From e0549c104cf55adb9d201f75f280557219e74e81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Wed, 2 Mar 2022 16:58:47 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E8=AF=84=E4=BC=B0=E6=B5=81?= =?UTF-8?q?=E7=A8=8B=E5=A2=9E=E5=8A=A0=E7=AD=9B=E9=80=89=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/xmpg/step1.vue | 77 ++++++++++++++++++- 1 file changed, 74 insertions(+), 3 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue b/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue index 984da41a7..97e265f79 100644 --- a/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue @@ -244,6 +244,41 @@
+ + + + + + + + + + + + + + + + + + { + res.data.managementHostList.forEach(item => { + if (item) { + this.managementHostName.push(item); //管理主体 + } + }); + res.data.developmentHostList.forEach(item => { + if (item) { + this.developmentHostName.push(item); //开发主体 + } + }); + res.data.categoryList.forEach(item => { + if (item) { + this.categoryName.push(item); //项目细分类 + } + }); + }); + }, fileTypeChange(type){ this.fileType = type let ids = []; @@ -562,7 +629,10 @@ export default { clearSearch() { this.projectSearch = { projectName: "", - projectNumber: "" + projectNumber: "", + managementHostName: "", //管理主体 + developmentHostName: "", //开发主体 + categoryName: "" //项目细分类 }; this.getProjectData(); }, @@ -646,7 +716,7 @@ export default { this.$http.get("sarStandProjectLibrary/queryStandInfo", { id: this.projectId, current: this.pageNo, - PageSize: this.pageSizeNo + PageSize: this.pageSizeNo, }, { _this: this }, res => { @@ -852,6 +922,7 @@ export default { }, }, mounted() { + this.optionsChange() this.bpnId = this.$route.query.bpnId if (this.bpnId !== undefined) { this.getData()