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(',') : ''