未符合项提示
This commit is contained in:
@@ -123,7 +123,7 @@
|
||||
@click.native="clickOpen(scope.row)"
|
||||
v-model="scope.row.dutyPeopleInfo"
|
||||
size="mini"
|
||||
placeholder="请输入内容"
|
||||
placeholder="请选择分发责任人"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
@@ -220,6 +220,7 @@
|
||||
>
|
||||
</ProcessFooter>
|
||||
<Role-tree
|
||||
is-title="选择人员信息"
|
||||
check-box
|
||||
:is-title="drawerTitle"
|
||||
:is-visible.sync="modalshowflag"
|
||||
@@ -234,7 +235,7 @@ import ProcessHeader from '../../components/ProcessHeader'
|
||||
import ProcessFooter from '../../components/ProcessFooter'
|
||||
import ProcessTitle from '../../components/ProcessTitle'
|
||||
import { roleTreeData } from "@/api/unqualProcess.js"
|
||||
import {completeTask, inboundLiaisonDetail} from "@/api/process.js"
|
||||
import {completeTask, inboundLiaisonDetail, saveinboundTask} from "@/api/process.js"
|
||||
|
||||
export default {
|
||||
name: "wfhxzgStep2",
|
||||
@@ -367,7 +368,23 @@ export default {
|
||||
},
|
||||
|
||||
// 保存按钮
|
||||
handleSave() {},
|
||||
handleSave() {
|
||||
this.saveLoading = true
|
||||
let _formData = new FormData()
|
||||
_formData.append('taskIds', this.taskIds)
|
||||
_formData.append('json', JSON.stringify({
|
||||
// roleForm: this.roleForm,
|
||||
itemsList: this.dataList,
|
||||
commentText: this.commentText
|
||||
}))
|
||||
saveinboundTask(_formData).then(res => {
|
||||
this.saveLoading = false
|
||||
this.$message.success('保存成功')
|
||||
this.bpnId = res.result
|
||||
}).catch(e => {
|
||||
this.saveLoading = false
|
||||
})
|
||||
},
|
||||
// 提交按钮
|
||||
handleSubmit() {
|
||||
this.isSubmit = true
|
||||
|
||||
Reference in New Issue
Block a user