From 2d579c4a6123b5a5f08528ce2f6c0552a7dc3cf3 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, 15 Apr 2022 15:22:27 +0800 Subject: [PATCH] =?UTF-8?q?52611=20=E6=A0=87=E5=87=86=E5=85=A5=E5=BA=93?= =?UTF-8?q?=E6=B5=81=E7=A8=8B--=E4=BC=9A=E7=AD=BE=E8=8A=82=E7=82=B9=20?= =?UTF-8?q?=E6=88=91=E5=8F=B8=E7=BD=B2=E5=90=8D=E4=BA=BA=E6=B2=A1=E5=9B=9E?= =?UTF-8?q?=E6=98=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/creatProcess/bzrk/step2.vue | 2 +- src/pages/processCenter/pages/creatProcess/bzrk/step3.vue | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue index 612c4842d..b1603a844 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue @@ -1168,7 +1168,7 @@ export default { getFormFieldList(item) { this.$nextTick(() => { this.form = JSON.parse(JSON.stringify(item)) - let wssmrName = this.form.wssmrname + let wssmrName = this.form.wssmrname || this.form.wssmr this.form.wssmr = wssmrName this.form.sycpx = this.form.sycpx && this.form.sycpx !== [] ? this.form.sycpx.split(',') : '' this.form.nylx = this.form.nylx && this.form.nylx !== [] ? this.form.nylx.split(',') : '' diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step3.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step3.vue index 9b5301fa0..66878e1a4 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step3.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step3.vue @@ -1127,9 +1127,10 @@ export default { * @description: 动态表单读取 */ getFormFieldList (item) { + console.log(item); this.$nextTick(() => { this.form = JSON.parse(JSON.stringify(item)) - let wssmrName = this.form.wssmrname + let wssmrName = this.form.wssmrname || this.form.wssmr this.form.wssmr = wssmrName this.form.sycpx = this.form.sycpx && this.form.sycpx !== [] ? this.form.sycpx.split(',') : '' this.form.nylx = this.form.nylx && this.form.nylx !== [] ? this.form.nylx.split(',') : ''