From 6c95afef259d6d2fef60b535b3a83da238737da3 Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Fri, 27 Aug 2021 10:47:40 +0800 Subject: [PATCH 01/13] =?UTF-8?q?=E6=8B=86=E5=88=86=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E4=B8=AD=E5=B7=B2=E5=AE=8C=E6=88=90=E5=92=8C=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E4=B8=AD=E9=83=BD=E8=83=BD=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/localTool/standAutoSplit/pages/itemSplitInfo.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/localTool/standAutoSplit/pages/itemSplitInfo.vue b/src/pages/localTool/standAutoSplit/pages/itemSplitInfo.vue index 7acd66034..d2209ab25 100644 --- a/src/pages/localTool/standAutoSplit/pages/itemSplitInfo.vue +++ b/src/pages/localTool/standAutoSplit/pages/itemSplitInfo.vue @@ -97,7 +97,7 @@ 属性 - 编辑 + 编辑 编辑 复制 删除 From 79af2c523b7789e00ed1542b06fbc9ea7f87cf7a Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Fri, 27 Aug 2021 14:05:12 +0800 Subject: [PATCH 02/13] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E8=AF=84=E4=BC=B0-?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=20=E6=B5=81=E7=A8=8B=E7=9A=84=E7=AC=AC6?= =?UTF-8?q?=E6=AD=A5=E7=9A=84=E6=89=B9=E9=87=8F=E7=BC=96=E8=BE=91=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/xmpg2/step6.vue | 207 +++++++++++++++++- 1 file changed, 206 insertions(+), 1 deletion(-) diff --git a/src/pages/processCenter/pages/creatProcess/xmpg2/step6.vue b/src/pages/processCenter/pages/creatProcess/xmpg2/step6.vue index f5de1e3ca..8401257ba 100644 --- a/src/pages/processCenter/pages/creatProcess/xmpg2/step6.vue +++ b/src/pages/processCenter/pages/creatProcess/xmpg2/step6.vue @@ -42,6 +42,12 @@ +
+
+ 批量编辑 + +
+
+ + + + + + + + + + +
@@ -331,6 +348,73 @@ @submit="handleSubmit" > + +
+ + 在研产品 + + + + + + + + + + + + + +
+ 在产产品 + + + + + + + + + + + + + +
+
+ +
@@ -349,6 +433,27 @@ export default { }, data() { return { + batchEditForm: { + // 在研产品 + // 合规 + complianceReasons :'', + // 不合规 + noCompliance :'', + // 应对措施 + countermeasures :'', + // 完成时间 + completionTime :'', + + // 在产产品 + // 合规 + zcComplianceReasons :'', + // 不合规 + zcNoCompliance:'', + // 应对措施 + zcCountermeasures:'', + // 完成时间 + zcCompletionTime:'' + }, hasChildren: true, active: "1", loading: false, @@ -398,6 +503,83 @@ export default { }; }, methods: { + //批量编辑确定按钮事件 + saveBatchEditForm() { + + // console.log(this.selectList) + for( let a = 0; a < this.dataList.length; a++) { + for ( let b = 0; b < this.selectList.length; b++) { + if (this.dataList[a].id === this.selectList[b]) { + //合规 + this.dataList[a].complianceReasons = this.batchEditForm.complianceReasons + //不合规 + this.dataList[a].noCompliance = this.batchEditForm.noCompliance + //应对措施 + this.dataList[a].countermeasures = this.batchEditForm.countermeasures + //完成时间 + this.dataList[a].completionTime = this.batchEditForm.completionTime + //合规 + this.dataList[a].zcComplianceReasons = this.batchEditForm.zcComplianceReasons + //不合规 + this.dataList[a].zcNoCompliance = this.batchEditForm.zcNoCompliance + //应对措施 + this.dataList[a].zcCountermeasures = this.batchEditForm.zcCountermeasures + //完成时间 + this.dataList[a].zcCompletionTime = this.batchEditForm.zcCompletionTime + }else { + for (let i=0;i 0) { + //合规 + this.batchEditForm.complianceReasons = '' + //不合规 + this.batchEditForm.noCompliance = '' + //应对措施 + this.batchEditForm.countermeasures = '' + //完成时间 + this.batchEditForm.completionTime = '' + //合规 + this.batchEditForm.zcComplianceReasons = '' + //不合规 + this.batchEditForm.zcNoCompliance = '' + //应对措施 + this.batchEditForm.zcCountermeasures = '' + //完成时间 + this.batchEditForm.zcCompletionTime = '' + this.modalshowflag = true + } else { + this.$message.warning('请选择要编辑的数据') + } + }, // 点击查看 handlePreview(item) { let routeUrl = this.$router.resolve({ @@ -525,7 +707,11 @@ export default { }, //标准表格选择框改变 selectStandChange(data) { - this.selectList = data; + this.selectList = []; + for (let i = 0; i < data.length; i++) { + this.selectList.push(data[i].id); + } + }, getTree() { this.$http.get("SarInstitution/institution/institutionAndUser", {}, {}, res => { @@ -605,6 +791,25 @@ export default { height: calc(~'100% - 103px'); overflow: auto; + .tableTitle { + margin-bottom: 10px; + height: 30px; + line-height: 30px; + position: relative; + font-size: 13px; + font-weight: bold; + + .tableButton { + position: absolute; + right: 0; + top: 0; + } + + .accessStandardsAndRegulations { + height: 100%; + } + } + .accessStandardsAndRegulations { height: 100%; } From 98c40803d83ff3e988e661ec961573811714aafa Mon Sep 17 00:00:00 2001 From: shenyanpei Date: Fri, 27 Aug 2021 14:43:27 +0800 Subject: [PATCH 03/13] =?UTF-8?q?=E6=A0=87=E5=87=86=E8=A7=A3=E8=AF=BB?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=8B=86=E5=88=86=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/bzjd/step1.vue | 1785 +++++++++-------- 1 file changed, 909 insertions(+), 876 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue index 9339d3260..fb0665afc 100644 --- a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue @@ -1,903 +1,936 @@ From add1b5831e193f777e2ff7c5ff90579b5a66a1a9 Mon Sep 17 00:00:00 2001 From: "Mr.Z" <709235321@qq.com> Date: Fri, 27 Aug 2021 14:44:09 +0800 Subject: [PATCH 04/13] =?UTF-8?q?=E6=A0=87=E5=87=86=E9=A2=84=E8=AD=A6?= =?UTF-8?q?=E6=A0=87=E5=87=86=E5=8F=B7=E8=B7=B3=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/localTool/standardWarning.vue | 31 +++++++++++++++++-------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/src/pages/localTool/standardWarning.vue b/src/pages/localTool/standardWarning.vue index f2d7528f7..59df5b758 100644 --- a/src/pages/localTool/standardWarning.vue +++ b/src/pages/localTool/standardWarning.vue @@ -47,14 +47,14 @@
国外政策
- + @@ -112,14 +112,14 @@
国外政策
- + @@ -170,12 +170,12 @@ > @@ -236,12 +236,12 @@ > @@ -492,6 +492,17 @@ export default { }, e => { }); }, + //点击查看详情 + handlePreview(item) { + let routeUrl = this.$router.resolve({ + name: 'OtherStandardDetails', + params: { + id: item.standId, + pageType: item.standType + '_STAND' + } + }) + window.open(routeUrl.href, '_blank') + }, //获取政策预警数据(type用于区别分页器切换) getPolicyDate() { this.loading[this.field] = true From 9ab2466e74ef247cb766a147ab3c6efab1ffd095 Mon Sep 17 00:00:00 2001 From: "zhaokaiyao@91isoft.com" <6922339zky> Date: Fri, 27 Aug 2021 14:48:01 +0800 Subject: [PATCH 05/13] =?UTF-8?q?=E4=BC=81=E4=B8=9A=E6=A0=87=E5=87=86?= =?UTF-8?q?=E5=BA=93=E6=96=87=E6=9C=AC=E7=8A=B6=E6=80=81=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/EnterpriseStandardDatabase.vue | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue index d2758415a..1c3d17136 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue @@ -341,6 +341,20 @@ label="文本状态" width="110" > + + + + + + + Date: Fri, 27 Aug 2021 16:04:10 +0800 Subject: [PATCH 08/13] =?UTF-8?q?=E5=B1=9E=E6=80=A7=E8=87=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../attributeCustom/components/stand.vue | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/pages/config/pages/attributeCustom/components/stand.vue b/src/pages/config/pages/attributeCustom/components/stand.vue index 3953c3414..f36390630 100644 --- a/src/pages/config/pages/attributeCustom/components/stand.vue +++ b/src/pages/config/pages/attributeCustom/components/stand.vue @@ -104,7 +104,7 @@ label-width="150px" > - + - + - + - + - + {{ opt.label }}--> - + - + - + {{ opt.label }} - + - + Date: Fri, 27 Aug 2021 16:05:59 +0800 Subject: [PATCH 09/13] =?UTF-8?q?=E5=9B=BD=E5=86=85=E6=A0=87=E5=87=86-getA?= =?UTF-8?q?reaList-INLAND=5FSTAND?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domesticStandardsAndRegulations/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue index e2a4a8fdc..06bb099c8 100644 --- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue @@ -1686,7 +1686,7 @@ export default { orgTableValName: '', twoOptions: [], threeOptions: [], - sarType: 'STAND', + sarType: 'INLAND_STAND', productModal: false, // 模态框是否打开 modalType: '', productTitle: '', // 模态框标题 From a17c9dfc8d2b3ec964a0ea71e4f9d9f6df7ae66d Mon Sep 17 00:00:00 2001 From: "zhaokaiyao@91isoft.com" <6922339zky> Date: Fri, 27 Aug 2021 16:16:51 +0800 Subject: [PATCH 10/13] =?UTF-8?q?=E5=9B=BD=E5=A4=96=E6=A0=87=E5=87=86-getA?= =?UTF-8?q?reaList-FOREIGN=5FSTAND?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../foreignStandardsAndRegulations/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue index 9a4e7820a..3ee6d83d5 100644 --- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue @@ -4105,7 +4105,7 @@ export default { queryDisplayLocation () { return new Promise((resolve, reject) => { this.$http.get('lawssBase/utArea/getAreaList', { - sarType: 'INLAND_STAND' + sarType: 'FOREIGN_STAND' }, { _this: this }, res => { From f19f93d521a8dd329e7fb78b666165a6e9ddae9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Fri, 27 Aug 2021 18:21:04 +0800 Subject: [PATCH 11/13] =?UTF-8?q?=E6=A0=87=E5=87=86=E5=BE=81=E6=B1=82?= =?UTF-8?q?=E6=84=8F=E8=A7=81=E6=B5=81=E7=A8=8B=E5=8E=86=E5=8F=B2=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E9=A1=B5=E9=9D=A2=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/bzzqyj/step3.vue | 6 +- .../pages/creatProcess/bzzqyj/step5.vue | 929 ++++++++++-------- .../pages/creatProcess/bzzqyj/step6.vue | 895 +++++++++-------- .../pages/creatProcess/bzzqyj/step7.vue | 39 +- .../pages/creatProcess/bzzqyj/step8.vue | 39 +- .../pages/creatProcess/bzzqyj/step9.vue | 882 +++++++++-------- src/sysConfig/index.js | 8 +- 7 files changed, 1473 insertions(+), 1325 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzzqyj/step3.vue b/src/pages/processCenter/pages/creatProcess/bzzqyj/step3.vue index b3e076e97..43822317f 100644 --- a/src/pages/processCenter/pages/creatProcess/bzzqyj/step3.vue +++ b/src/pages/processCenter/pages/creatProcess/bzzqyj/step3.vue @@ -328,11 +328,13 @@ handleSave() { this.saveLoading = true; let _formData = new FormData(); + let json = this.form + json.data = this.data _formData.append("id", this.bpnId || ""); _formData.append("prcType", "3"); _formData.append("taskIds", this.taskIds); _formData.append("json", JSON.stringify({ - form: this.json, + form: json, commentText: this.commentText })); saveTaskForPub(_formData).then(res => { @@ -400,7 +402,7 @@ this.form.endTime = data.endTime || data.form.endTime this.form.cname = data.cname || data.form.cname this.json = data - this.data = data.info || data.data || [] + this.data = data.info || data.data || data.form.data|| [] }).catch(e => { }) }) diff --git a/src/pages/processCenter/pages/creatProcess/bzzqyj/step5.vue b/src/pages/processCenter/pages/creatProcess/bzzqyj/step5.vue index e08b93f6e..cc5a6fc4f 100644 --- a/src/pages/processCenter/pages/creatProcess/bzzqyj/step5.vue +++ b/src/pages/processCenter/pages/creatProcess/bzzqyj/step5.vue @@ -1,450 +1,505 @@ diff --git a/src/pages/processCenter/pages/creatProcess/bzzqyj/step6.vue b/src/pages/processCenter/pages/creatProcess/bzzqyj/step6.vue index 6f79d2566..b559eec49 100644 --- a/src/pages/processCenter/pages/creatProcess/bzzqyj/step6.vue +++ b/src/pages/processCenter/pages/creatProcess/bzzqyj/step6.vue @@ -1,446 +1,477 @@ diff --git a/src/pages/processCenter/pages/creatProcess/bzzqyj/step7.vue b/src/pages/processCenter/pages/creatProcess/bzzqyj/step7.vue index 61b4a50d7..dfadeae1d 100644 --- a/src/pages/processCenter/pages/creatProcess/bzzqyj/step7.vue +++ b/src/pages/processCenter/pages/creatProcess/bzzqyj/step7.vue @@ -355,19 +355,34 @@ pId: this.pId }).then(res => { let data = JSON.parse(res.mesg) - this.form.cid = data.cid - this.form.endTime = data.endTime - this.form.cname = data.cname - var arr = [] - data.summaryList.forEach( item => { - if (item.state != '3') { - arr.push(item) - } - }) - this.json = data - this.data = arr + if (data.oldinfo === undefined) { + this.form.cid = data.cid; + this.form.endTime = data.endTime; + this.form.cname = data.cname; + var arr = []; + data.summaryList.forEach(item => { + if (item.state != "3") { + arr.push(item); + } + }); + this.json = data; + this.data = arr; + this.oldData = data.oldinfo; + } else { + this.form.cid = data.oldinfo.cid; + this.form.endTime = data.oldinfo.endTime; + this.form.cname = data.oldinfo.cname; + var arr = []; + data.oldinfo.data.forEach(item => { + if (item.state != "3") { + arr.push(item); + } + }); + this.json = data; + this.data = arr; + this.oldData = data.oldinfo; + } - this.oldData = data.oldinfo }).catch(e => { }) }) diff --git a/src/pages/processCenter/pages/creatProcess/bzzqyj/step8.vue b/src/pages/processCenter/pages/creatProcess/bzzqyj/step8.vue index 1144cfc97..8cc1a33ff 100644 --- a/src/pages/processCenter/pages/creatProcess/bzzqyj/step8.vue +++ b/src/pages/processCenter/pages/creatProcess/bzzqyj/step8.vue @@ -355,18 +355,33 @@ pId: this.pId }).then(res => { let data = JSON.parse(res.mesg) - this.form.cid = data.cid - this.form.endTime = data.endTime - this.form.cname = data.cname - var arr = [] - data.summaryList.forEach( item => { - if (item.state != '3') { - arr.push(item) - } - }) - this.json = data - this.data = arr - this.oldData = data.oldinfo + if (data.oldinfo === undefined) { + this.form.cid = data.cid; + this.form.endTime = data.endTime; + this.form.cname = data.cname; + var arr = []; + data.summaryList.forEach(item => { + if (item.state != "3") { + arr.push(item); + } + }); + this.json = data; + this.data = arr; + this.oldData = data.oldinfo; + } else { + this.form.cid = data.oldinfo.cid; + this.form.endTime = data.oldinfo.endTime; + this.form.cname = data.oldinfo.cname; + var arr = []; + data.oldinfo.data.forEach(item => { + if (item.state != "3") { + arr.push(item); + } + }); + this.json = data; + this.data = arr; + this.oldData = data.oldinfo; + } }).catch(e => { }) }) diff --git a/src/pages/processCenter/pages/creatProcess/bzzqyj/step9.vue b/src/pages/processCenter/pages/creatProcess/bzzqyj/step9.vue index 72dfadb99..4703b35e0 100644 --- a/src/pages/processCenter/pages/creatProcess/bzzqyj/step9.vue +++ b/src/pages/processCenter/pages/creatProcess/bzzqyj/step9.vue @@ -1,440 +1,470 @@ diff --git a/src/sysConfig/index.js b/src/sysConfig/index.js index 1155aea99..d3cd25a02 100644 --- a/src/sysConfig/index.js +++ b/src/sysConfig/index.js @@ -4,10 +4,10 @@ * @date: 2018-09-04 17:47:46 */ // 服务器地址 -// const devIp = '192.168.1.159' +const devIp = '10.96.10.171' +const devInterfacePORT = '9999' +// const devIp = '10.5.103.101' // const devInterfacePORT = '9999' -const devIp = '62.234.136.153' -const devInterfacePORT = '8038' // 云端端口号 const DEV_CLOUD_RES_INTERFACE_PORT = '7777' const simpleFilePath = 'att/attFile/upload' @@ -31,7 +31,7 @@ const processPort = '17210' *****************************************************************/ // 生产环境配置 const prodIp = '62.234.136.153' -const prodInterfacePORT = '8038' +const prodInterfacePORT = '8033' // 判断环境 From 820b215771734c44399336bd163cbe860e85046e Mon Sep 17 00:00:00 2001 From: "zhaokaiyao@91isoft.com" <6922339zky> Date: Sun, 29 Aug 2021 19:16:04 +0800 Subject: [PATCH 12/13] =?UTF-8?q?=E5=9B=BD=E5=86=85=E5=A4=96=E6=A0=87?= =?UTF-8?q?=E5=87=86=E8=AF=A6=E6=83=85=20=E5=88=86=E8=A7=A3=E5=8D=95?= =?UTF-8?q?=E6=97=A5=E6=9C=9F=E6=A0=BC=E5=BC=8F=E5=92=8C=E6=B8=85=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/details/otherStandardDetails/index.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue index 139d7920a..ad3d8ac6a 100644 --- a/src/pages/details/otherStandardDetails/index.vue +++ b/src/pages/details/otherStandardDetails/index.vue @@ -467,6 +467,7 @@ @@ -477,6 +478,7 @@ @@ -2396,6 +2398,9 @@ export default { this.standItemSearch.parts = '' this.standItemSearch.nameOrRequest = '' this.standItemSearch.fileType = '' + this.standItemSearch.itemsName='' + this.standItemSearch.ZCCSSRQ='' + this.standItemSearch.XCXSSRQ='' this.selectSarStandItems() }, inputChange() { From 3a2291bf8f3d88316b777ab8dd50111b60891dd4 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Mon, 30 Aug 2021 12:11:55 +0800 Subject: [PATCH 13/13] feat: There is no way the --- src/pages/config/pages/attributeCustom/components/stand.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/config/pages/attributeCustom/components/stand.vue b/src/pages/config/pages/attributeCustom/components/stand.vue index f36390630..0ea9cfe17 100644 --- a/src/pages/config/pages/attributeCustom/components/stand.vue +++ b/src/pages/config/pages/attributeCustom/components/stand.vue @@ -261,7 +261,7 @@