From d6faf236f66202c42c390b03419a4add442cce52 Mon Sep 17 00:00:00 2001 From: "396572590@qq.com" Date: Fri, 5 Aug 2022 18:07:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20There=20is=20no=20way=20the,=20?= =?UTF-8?q?=E2=80=8556832=20=E9=A1=B9=E7=9B=AE=E8=AF=84=E4=BC=B0=E6=B5=81?= =?UTF-8?q?=E7=A8=8B=EF=BC=8C=E7=BA=A2=E6=A1=86=E9=87=8C=E8=BE=B9=E7=9A=84?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E6=9C=AA=E5=AE=9E=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/xmpg2/step1.vue | 196 ++++++++++++++---- 1 file changed, 161 insertions(+), 35 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/xmpg2/step1.vue b/src/pages/processCenter/pages/creatProcess/xmpg2/step1.vue index 96029a19b..8016bfce5 100644 --- a/src/pages/processCenter/pages/creatProcess/xmpg2/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/xmpg2/step1.vue @@ -250,40 +250,84 @@ custom-class="demo-drawer" >
-
+
@@ -303,6 +347,35 @@ type="selection" width="55" align="center" /> + + + + + { + res.data.MaintenanceProjectClassification.forEach((item, index) => { + this.projectData.push({ + label: item, + value: index + }) + }) + res.data.MaintenanceProjectStatus.forEach((item, index) => { + this.projectStatus.push({ + label: item, + value: index + }) + this.xmztOptions = this.projectStatus + }) + res.data.notMaintenanceProjectClassification.forEach((item, index) => { + this.notProjectData.push({ + label: item, + value: index + }) + }) + res.data.notMaintenanceProjectStatus.forEach((item, index) => { + this.notProjectStatus.push({ + label: item, + value: index + }) + }) + }) + } }, mounted() { if(this.$route.query.bpnId){ this.getTaskId() } + this.selectSort() this.getProjectData(); // 查询各下拉框数据 this.$http.get("sys/dictype/getDicTypeListCode", "", { @@ -759,6 +875,16 @@ export default {