From 4c2237100f9fc49f428f6830c9ee4b51e7a17e04 Mon Sep 17 00:00:00 2001 From: zhaoxianhui <1994861028@qq.com> Date: Tue, 5 Jul 2022 10:20:53 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=90=88=E8=A7=84=E8=AF=84?= =?UTF-8?q?=E4=BC=B0-=E9=A1=B9=E7=9B=AE=EF=BC=8C=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E5=8F=91=E8=B5=B7=E7=95=8C=E9=9D=A2=EF=BC=8C=E5=B0=86=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E4=BF=9D=E5=AD=98=E8=87=B3=E8=8D=89=E7=A8=BF=EF=BC=8C?= =?UTF-8?q?=E4=BB=8E=E8=8D=89=E7=A8=BF=E8=BF=9B=E5=85=A5=20=E5=88=86?= =?UTF-8?q?=E8=A7=A3=E5=8D=95=E6=9D=A5=E6=BA=90=E6=98=BE=E7=A4=BA=E4=B8=8D?= =?UTF-8?q?=E5=AF=B9Bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/xmpg/step1.vue | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue b/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue index 0d480d08c..2500eaffc 100644 --- a/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue @@ -474,7 +474,12 @@ export default { saveLoading: false, fileType: '', bpnId: '', - decomposeOptions: [], //分解单来源数据 + decomposeOptions: [ + { + value: "BDR", + label: '不带入' + } + ], //分解单来源数据 //表单的数据 listForm: { projectNumber: "", //项目编号 @@ -571,16 +576,16 @@ export default { }); }, typeList(row){ - this.decomposeOptions = [] + // this.decomposeOptions = [] this.$http.get("SarStandItems/sar-stand-items/getFileType", { standId: row.standId }, {}, res => { - this.decomposeOptions.push( - { - value: 'BDR', - label: '不带入' - } - ) + // this.decomposeOptions.push( + // { + // value: "BDR", + // label: '不带入' + // } + // ) res.data.forEach(item => { this.decomposeOptions.push(item) })