diff --git a/src/pages/processCenter/pages/components/ProcessFooter.vue b/src/pages/processCenter/pages/components/ProcessFooter.vue index 6dc105371..1c2d9b5e7 100644 --- a/src/pages/processCenter/pages/components/ProcessFooter.vue +++ b/src/pages/processCenter/pages/components/ProcessFooter.vue @@ -97,6 +97,15 @@ v-if="showOver3" >驳回 + 接收任务 @@ -1421,6 +1421,7 @@ export default { zrIndex: '', zrIdList: [], type: '', + taskType:'', defaultUserProps: { children: 'children', label: 'name' @@ -3059,7 +3060,7 @@ export default { return arr; }, // 接受按钮 - handleAccept(){ + handleReceive(){ this.isSubmit = true execTask({ todoId: this.todoId // 当前节点ID @@ -3097,6 +3098,7 @@ export default { json.zrUserId = this.form.zrUserId json.jlUserId = this.form.jlUserId json.commentText = this.commentText + json.type = this.taskType json.applyUpdUserId = this.form.applyUpdUserId json.prcCreateUser = this.form.prcCreateUser json.prcCreateUserName = this.form.prcCreateUserName @@ -3214,6 +3216,7 @@ export default { const processForm = JSON.parse(res.mesg) this.todoId = res.id this.form.reviseStatus = processForm.reviseStatus + this.taskType = processForm.type } }).catch(e => { }) diff --git a/src/pages/regulatoryRepository/enterpriseStandardPlan/index.vue b/src/pages/regulatoryRepository/enterpriseStandardPlan/index.vue index 441d4f9ab..8c58a940b 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardPlan/index.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardPlan/index.vue @@ -1220,7 +1220,9 @@ tips = '添加' } let arr = JSON.parse(JSON.stringify(this.addForm)) + this.addForm.unitName = arr.unitName arr.area = arr.area.join(',') + this.addForm = {...this.addForm} this.$http.post(url, this.addForm, { _this: this }, res => {