From 63059addf325b723de78e404445895a9f86ca881 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Thu, 21 Apr 2022 09:39:16 +0800 Subject: [PATCH 1/7] =?UTF-8?q?52636=20[=E7=BA=BF=E4=B8=8A]=E4=BC=81?= =?UTF-8?q?=E6=A0=87=E5=BA=9F=E6=AD=A2=E6=B5=81=E7=A8=8B=20=E6=89=B9?= =?UTF-8?q?=E5=87=86=E8=8A=82=E7=82=B9=20=E8=BF=9B=E5=85=A5=E6=AD=A4?= =?UTF-8?q?=E8=8A=82=E7=82=B9=E5=90=8E=20=E6=8C=89=E9=92=AE=E5=BA=94?= =?UTF-8?q?=E8=AF=A5=E5=9C=A8=E4=B8=80=E4=B8=AA=E7=95=8C=E9=9D=A2=20?= =?UTF-8?q?=E7=8E=B0=E5=9C=A8=E7=9A=84=E6=8C=89=E9=92=AE=E5=BA=94=E8=AF=A5?= =?UTF-8?q?=E7=BD=91=E4=B8=8A=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/creatProcess/qbfz/step1-7.vue | 2 +- src/pages/processCenter/pages/creatProcess/qbfz/step7.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/qbfz/step1-7.vue b/src/pages/processCenter/pages/creatProcess/qbfz/step1-7.vue index 5cc397771..a165acbef 100644 --- a/src/pages/processCenter/pages/creatProcess/qbfz/step1-7.vue +++ b/src/pages/processCenter/pages/creatProcess/qbfz/step1-7.vue @@ -550,7 +550,7 @@ export default { display: flex; flex-direction: column; justify-content: space-between; - height: calc(~'100% - 103px'); + height: calc(~'100% - 133px'); overflow: auto; .tableTitle { diff --git a/src/pages/processCenter/pages/creatProcess/qbfz/step7.vue b/src/pages/processCenter/pages/creatProcess/qbfz/step7.vue index 16dc9e07a..830ce13e4 100644 --- a/src/pages/processCenter/pages/creatProcess/qbfz/step7.vue +++ b/src/pages/processCenter/pages/creatProcess/qbfz/step7.vue @@ -569,7 +569,7 @@ export default { display: flex; flex-direction: column; justify-content: space-between; - height: calc(~'100% - 103px'); + height: calc(~'100% - 133px'); overflow: auto; .tableTitle { From c117196b72775622c57fcaf6d503d93753e6655d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Thu, 21 Apr 2022 10:45:26 +0800 Subject: [PATCH 2/7] =?UTF-8?q?52645=20=E6=A0=87=E5=87=86=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E6=B5=81=E7=A8=8B-=E5=9B=BD=E5=86=85=E5=85=A5?= =?UTF-8?q?=E5=BA=93=20=E6=B5=81=E7=A8=8B=E8=B7=91=E5=AE=8C=E5=90=8E=20?= =?UTF-8?q?=E8=B5=B7=E8=8D=89=E5=8D=95=E4=BD=8D=E4=B9=B1=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../processCenter/pages/creatProcess/bzrk/step2.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue index 7ec0cbff6..7d991ee2e 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue @@ -1247,7 +1247,6 @@ export default { this.isSubmit = true; this.form.commentText = this.commentText; this.form.approvalOpinion = this.formTongGuo.approvalOpinion; - console.log(this.form); if (this.form.syrz.length === 0) { this.form.syrz = ""; } @@ -1269,9 +1268,21 @@ export default { if (this.form.zrgcs.length === 0) { this.form.zrgcs = ""; } + let qcdwName = [] + if(this.form.qcdw && this.form.qcdw.length){ + this.form.qcdw.map(item => { + this.qcdwOptions.forEach(items => { + if(item === items.value){ + qcdwName.push(items.label) + } + }) + }) + } this.form.standType = this.form.standInData === '0' ? 'INLAND' : 'FOREIGN' this.form.menuIds = this.form.treeListId; this.form.BBFDTBZ = this.form.bfbdtbzh + this.form.qcdw = qcdwName + this.form.qcdw = this.form.attrInfoCaseMap.qcdw = this.form.attrInfoMap.QCDW = qcdwName.splice(',') const json = JSON.stringify(this.form); this.$http.post("lawss/activiti/completeTask", { taskIds: this.taskIds, From 2d73e6c41708bc3c8fc0ad0b69ce67d2ce615616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Thu, 21 Apr 2022 11:11:37 +0800 Subject: [PATCH 3/7] =?UTF-8?q?52646=20=E3=80=90=E7=BA=BF=E4=B8=8A?= =?UTF-8?q?=E3=80=91=E6=A0=87=E5=87=86=E5=85=A5=E5=BA=93=E6=B5=81=E7=A8=8B?= =?UTF-8?q?-=E5=9B=BD=E5=86=85=E5=85=A5=E5=BA=93=20=E4=BF=AE=E8=AE=A2?= =?UTF-8?q?=E8=8A=82=E7=82=B9=20=E5=9B=9E=E6=89=A7=E8=AF=B4=E6=98=8E?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=20=E6=97=A0=E6=B3=95=E4=BF=9D=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../processCenter/pages/creatProcess/bzrk/step2.vue | 2 +- .../processCenter/pages/creatProcess/bzrk/step4.vue | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue index 7d991ee2e..27c206b68 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue @@ -707,7 +707,7 @@
-
+
{ @@ -2623,6 +2625,7 @@ export default { * @description: 动态表单读取 */ getFormFieldList(item) { + console.log(item); this.$nextTick(() => { this.form = JSON.parse(JSON.stringify(item)) this.defaultCheckedKeys = [this.form.standSystem]; @@ -2665,7 +2668,6 @@ export default { // }) // }, initializeFileList(property, value) { - console.log(property); switch (property) { case 'xgd': this.getFileList(value, this.xgdFileList); @@ -2758,9 +2760,10 @@ export default { //表单文件处理 this.fileInfoHandle(); this.form.country = this.countryArr; + this.form.commentText = this.commentText; this.saveLoading = true let _formData = new FormData() - _formData.append('id', this.bpnId) + _formData.append("id", this.bpnId || ""); // _formData.append('createUser', this.$store.getters.userInfo.userId) // _formData.append('createUserName', this.$store.getters.userInfo.uName) _formData.append('prcType', '1') @@ -2843,6 +2846,8 @@ export default { this.form.commentText = this.commentText this.form.approvalOpinion = this.approvalOpinion const json = JSON.stringify(this.form); + console.log(json); + return; this.$http.post('lawss/activiti/completeTask', { taskIds: this.taskIds, userId: this.userId, @@ -2924,6 +2929,7 @@ export default { this.getData() }, mounted() { + this.bpnId = this.$route.query.bpnId this.processTable() this.$http.get('sys/dictype/getDicTypeListCode', '', { _this: this From b26e8da574c19d6cb93743e04219c56cc362f38e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Thu, 21 Apr 2022 14:32:27 +0800 Subject: [PATCH 4/7] =?UTF-8?q?52647=20=E6=A0=87=E5=87=86=E8=B0=83?= =?UTF-8?q?=E7=A0=94=E6=B5=81=E7=A8=8B=EF=BC=9A=E8=B0=83=E7=A0=94=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=E5=A4=84=E7=90=86=E8=8A=82=E7=82=B9=EF=BC=8C=E5=9B=9E?= =?UTF-8?q?=E6=89=A7=E8=AF=B4=E6=98=8E=E5=BE=80=E4=B8=8B=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/bzdy/step4.vue | 26 +++++++++---------- .../pages/creatProcess/bzdy/step5.vue | 26 +++++++++---------- .../pages/creatProcess/bzdy/step6.vue | 26 +++++++++---------- .../pages/creatProcess/bzdy/step7.vue | 26 +++++++++---------- .../pages/creatProcess/bzdy/step8.vue | 26 +++++++++---------- .../pages/creatProcess/bzdy/step9.vue | 26 +++++++++---------- 6 files changed, 78 insertions(+), 78 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzdy/step4.vue b/src/pages/processCenter/pages/creatProcess/bzdy/step4.vue index 0d03bcc99..1341371f7 100644 --- a/src/pages/processCenter/pages/creatProcess/bzdy/step4.vue +++ b/src/pages/processCenter/pages/creatProcess/bzdy/step4.vue @@ -135,19 +135,19 @@
- - -
- - -
-
-
+ + +
+ + +
+
+
- - -
- - -
-
-
+ + +
+ + +
+
+
- - -
- - -
-
-
+ + +
+ + +
+
+
- - -
- - -
-
-
+ + +
+ + +
+
+
- - -
- - -
-
-
+ + +
+ + +
+
+
- - -
- - -
-
-
+ + +
+ + +
+
+
Date: Thu, 21 Apr 2022 17:22:47 +0800 Subject: [PATCH 5/7] =?UTF-8?q?=E6=B8=85=E5=8D=95=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E9=80=82=E7=94=A8=E8=AE=A4=E8=AF=81=E5=B1=95=E7=A4=BA=E7=BC=96?= =?UTF-8?q?=E8=BE=91=20=20=E5=AF=BC=E5=85=A5=20=E6=A8=A1=E6=9D=BF=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/addEdit.vue | 169 +++++++++++++++++- 1 file changed, 167 insertions(+), 2 deletions(-) diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue index f791bc3bc..084fe0627 100644 --- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue +++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue @@ -230,18 +230,30 @@
清单条目
+ 导入 + 导出 + >导出 + + 模板下载 删除 + >批量删除
@@ -309,6 +321,12 @@ width="180px" label="能源类型"> + + + + + + + + 确认
+ + + +
+ +

点击或拖拽上传文件

+
+
+