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 {