From 9466e2205b1ebcfcaecfcd0cb8fc0c4983851624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Fri, 22 Apr 2022 15:26:07 +0800 Subject: [PATCH] =?UTF-8?q?52501=20=E6=A0=87=E5=87=86=E8=B0=83=E7=A0=94?= =?UTF-8?q?=E6=B5=81=E7=A8=8B=EF=BC=9A=E4=BC=9A=E7=AD=BE=E8=8A=82=E7=82=B9?= =?UTF-8?q?=EF=BC=8C=E9=A6=96=E6=AC=A1=E6=B5=81=E8=BD=AC=E4=BC=9A=E7=AD=BE?= =?UTF-8?q?=E8=8A=82=E7=82=B9=20=E6=95=B0=E6=8D=AE=E9=A9=B3=E5=9B=9E?= =?UTF-8?q?=EF=BC=8C=E5=86=8D=E6=AC=A1=E6=B5=81=E8=BD=AC=E5=88=B0=E4=BC=9A?= =?UTF-8?q?=E7=AD=BE=E8=8A=82=E7=82=B9=E7=9A=84=E6=97=B6=E5=80=99=20?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E7=9B=B4=E6=8E=A5=E6=B6=88=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/creatProcess/bzdy/step5.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzdy/step5.vue b/src/pages/processCenter/pages/creatProcess/bzdy/step5.vue index dbb9177ea..2664f236c 100644 --- a/src/pages/processCenter/pages/creatProcess/bzdy/step5.vue +++ b/src/pages/processCenter/pages/creatProcess/bzdy/step5.vue @@ -275,6 +275,7 @@ ] }, json: {}, + jsonData: {}, fileUrl: 'api/att/attFile/upload', fileMadel: false, } @@ -401,11 +402,12 @@ this.$refs['qbkwForm'].validate((valid) => { if (valid) { this.isSubmit = true - var json = this.json + let json = this.jsonData json.commentText = this.commentText5 json.hzfileId = this.form.hzfileId json.hzfileName = this.form.hzfileName json.docUser = this.newDocUser + json.responUserList = this.tableData this.$http.post('lawss/activiti/completeTask', { json: JSON.stringify(json), taskId: this.taskIds, @@ -427,6 +429,8 @@ pId: this.pId }).then(res => { let data = JSON.parse(res.mesg) + let jsonData = JSON.parse(res.mesg) + this.jsonData = jsonData.form ? jsonData.form : jsonData this.commentText5 = data.commentText5 || '' this.form.title = data.title || data.form.title this.form.processName = data.processName || data.form.processName