From d53d5c89eac2d8f3ce6de1b9a9373d304b3790ad 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, 25 Aug 2021 14:49:54 +0800 Subject: [PATCH 01/21] =?UTF-8?q?=E6=B8=85=E5=8D=95=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/bzqdfb/step1.vue | 50 ++++++++++++------- 1 file changed, 32 insertions(+), 18 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue index 8864b3131..a391d8d4e 100644 --- a/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzqdfb/step1.vue @@ -131,20 +131,20 @@ @@ -822,14 +822,14 @@ export default { code: "", //标准号 standName: "", //标准名称 issueTime: "", //发布日期 - XCXSSRQ: "", //新车型实施日期 - ZCCSSRQ: "", //在产车实施日期 + xcxssrqgj: "", //新车型实施日期 + zccssrqgj: "", //在产车实施日期 textStatus: "", //文本状态 id: "" }] }, choiceForm: {}, //选择标准清单列表 - // countryOptions: [], //适用区域下拉框数据 + countryOptions: [], //国家地区 standStateOptions: [], standardTypeOptions: [ { @@ -963,7 +963,22 @@ export default { }, { _this: this }, res => { - this.sarAccessListDatas = res.data.records; + let arr = res.data.records; + //国家地区字段转换 + arr.forEach(item => { + if (item.countryArea !== null || item.countryArea !== "") { + let k = (item.countryArea || "").split(',') + for (let i in this.countryOptions) { + for (let m = 0; m < k.length; m++) { + if (this.countryOptions[i].value === k[m]) { + k[m] = this.countryOptions[i].label + } + item.countryAreaShow = k.join(',') + } + } + } + }) + this.sarAccessListDatas = arr; this.total = res.data.total; }, e => { }); @@ -1292,15 +1307,14 @@ export default { } this.dataList = res.data.records; this.dataList.forEach(item => { - if (item.xcxssrqgj === null){ - this.$set(item, "XCXSSRQ", ''); - this.$set(item, "ZCCSSRQ", ''); - }else{ - this.$set(item, "XCXSSRQ", item.xcxssrqgj); - this.$set(item, "ZCCSSRQ", item.zccssrqgj); - } + if(item.xcxssrqgj === 'undefined'){ + item.xcxssrqgj = '' + } + if(item.zccssrqgj === 'undefined'){ + item.zccssrqgj = '' + } }) - this.listForm.dataList = res.data.records; + this.listForm.dataList = this.dataList; let formId = []; this.dataList.map(item => { formId.push(item.id); @@ -1402,7 +1416,7 @@ export default { _this: this }, res => { this.energyKindOptions = res.data.ENERGYTYPES //适用车型 - this.countryOptions = res.data.COUNTRY; + this.countryOptions = res.data.COUNTRY; //国家/地区 this.standStateOptions = res.data.WBZTCLASS; // 文本状态 this.setMap(this.standStateOptions); }); From f4d9b34d7b0dd97cf50f9517b5743132acd4e90c Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Wed, 25 Aug 2021 15:25:33 +0800 Subject: [PATCH 02/21] feat: There is no way the delResourceById --- .../domesticStandardsAndRegulations/index.vue | 2 +- .../components/EnterpriseStandardDatabase.vue | 2 +- .../foreignStandardsAndRegulations/index.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue index b66fc9787..e2a4a8fdc 100644 --- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue @@ -2816,7 +2816,7 @@ export default { roundButton: true, type: 'warning' }).then(() => { - this.$http.delete("sarResource/ts-resource", { + this.$http.put("sarResource/ts-resource/delResourceById", { resourceId: data.id }, res => { }, e => { diff --git a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue index d2758415a..928a2148f 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue @@ -2082,7 +2082,7 @@ export default { roundButton: true, type: 'warning' }).then(() => { - this.$http.delete("sarResource/ts-resource", { + this.$http.put("sarResource/ts-resource/delResourceById", { resourceId: data.id }, res => { }, e => { diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue index 1acacbe00..9a4e7820a 100644 --- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue @@ -2552,7 +2552,7 @@ export default { roundButton: true, type: 'warning' }).then(() => { - this.$http.delete("sarResource/ts-resource", { + this.$http.put("sarResource/ts-resource/delResourceById", { resourceId: data.id }, res => { }, e => { From 9540ec372b6780d42719fe3b48c8609c59fbe2dc Mon Sep 17 00:00:00 2001 From: "Mr.Z" <709235321@qq.com> Date: Wed, 25 Aug 2021 17:36:16 +0800 Subject: [PATCH 03/21] =?UTF-8?q?=E6=9C=AA=E7=AC=A6=E5=90=88=E9=A1=B9?= =?UTF-8?q?=E6=95=B4=E6=94=B9=E5=BA=93=E5=88=86=E9=A1=B5bug=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/creatProcess/bzzqyj/step6.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pages/processCenter/pages/creatProcess/bzzqyj/step6.vue b/src/pages/processCenter/pages/creatProcess/bzzqyj/step6.vue index e59a2bec0..6f79d2566 100644 --- a/src/pages/processCenter/pages/creatProcess/bzzqyj/step6.vue +++ b/src/pages/processCenter/pages/creatProcess/bzzqyj/step6.vue @@ -228,6 +228,9 @@ oldData: [], data: [], commentText: '', + oldText : '', + newText : '', + reason : '' , taskIds: this.$route.query.taskIds, pId: this.$route.query.prcId, roleRow: {}, @@ -284,6 +287,9 @@ chapterNumber : '章条编号', chapterName : '章节名称', commentText: '修改意见内容(包括理由或依据)', + oldText : '修改前', + newText : '修改后', + reason : '修改理由', department: '提出部门', responUserName: '提出人', stateText: '处理意见' From 76c6ea8e1cb5b46faaa1050699f1a901608cbc5f Mon Sep 17 00:00:00 2001 From: shenyanpei Date: Wed, 25 Aug 2021 17:57:00 +0800 Subject: [PATCH 04/21] =?UTF-8?q?=E6=9C=AA=E7=AC=A6=E5=90=88=E9=A1=B9?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../config/pages/attributeCustom/components/stand.vue | 1 + .../processCenter/pages/creatProcess/wfhxzg/step1.vue | 8 +++++--- .../processCenter/pages/creatProcess/wfhxzg/step2.vue | 5 ++--- .../processCenter/pages/creatProcess/wfhxzg/step3.vue | 4 ++-- .../processCenter/pages/creatProcess/wfhxzg/step4.vue | 4 ++-- .../processCenter/pages/creatProcess/wfhxzg/step5.vue | 4 ++-- src/pages/processCenter/pages/processDetail/index.vue | 6 +++--- 7 files changed, 17 insertions(+), 15 deletions(-) diff --git a/src/pages/config/pages/attributeCustom/components/stand.vue b/src/pages/config/pages/attributeCustom/components/stand.vue index 64706c03e..3953c3414 100644 --- a/src/pages/config/pages/attributeCustom/components/stand.vue +++ b/src/pages/config/pages/attributeCustom/components/stand.vue @@ -609,6 +609,7 @@ export default { this.addOrEdit = 'add' this.attributeTitle = '新增' this.showInfoModal = true + this.attributeEO = {} this.$nextTick(() => { this.$refs['attributeEO'].resetFields() }) diff --git a/src/pages/processCenter/pages/creatProcess/wfhxzg/step1.vue b/src/pages/processCenter/pages/creatProcess/wfhxzg/step1.vue index 47fbb736a..a974c66a6 100644 --- a/src/pages/processCenter/pages/creatProcess/wfhxzg/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/wfhxzg/step1.vue @@ -415,8 +415,8 @@ export default { name: 'OtherStandardDetails', params: { id: item.standId, - pageType: 'FOREIGN_STAND' - // pageType: item.standType + '_STAND' + // pageType: 'FOREIGN_STAND' + pageType: item.standType + '_STAND' } }) window.open(routeUrl.href, '_blank') @@ -483,6 +483,9 @@ export default { }, // 提交按钮 handleSubmit() { + this.dataList.forEach(item =>{ + item.standId = item.standSerialNumber + }) let json = { prcCreateUser: this.$store.getters.userInfo.userId, prcCreateUserName: this.$store.getters.userInfo.userName, @@ -502,7 +505,6 @@ export default { type: '8' } startProcess(paramsInfo).then(res => { - console.log(res) this.taskID = res.data const params = new FormData(); params.set('json', JSON.stringify(json)) diff --git a/src/pages/processCenter/pages/creatProcess/wfhxzg/step2.vue b/src/pages/processCenter/pages/creatProcess/wfhxzg/step2.vue index 7337160b7..7f5b9561e 100644 --- a/src/pages/processCenter/pages/creatProcess/wfhxzg/step2.vue +++ b/src/pages/processCenter/pages/creatProcess/wfhxzg/step2.vue @@ -361,7 +361,6 @@ export default { // 选择勾选项的集合 handleSelectionChange(value) { this.multipleSelection = value - console.log(value) }, handleTabs(name) { this.active = name @@ -487,8 +486,8 @@ export default { name: 'OtherStandardDetails', params: { id: item.standId, - pageType: 'FOREIGN_STAND' - // pageType: item.standType + '_STAND' + // pageType: 'FOREIGN_STAND' + pageType: item.standType + '_STAND' } }) window.open(routeUrl.href, '_blank') diff --git a/src/pages/processCenter/pages/creatProcess/wfhxzg/step3.vue b/src/pages/processCenter/pages/creatProcess/wfhxzg/step3.vue index 0ee390f14..cec18bcd1 100644 --- a/src/pages/processCenter/pages/creatProcess/wfhxzg/step3.vue +++ b/src/pages/processCenter/pages/creatProcess/wfhxzg/step3.vue @@ -398,8 +398,8 @@ export default { name: 'OtherStandardDetails', params: { id: item.standId, - pageType: 'FOREIGN_STAND' - // pageType: item.standType + '_STAND' + // pageType: 'FOREIGN_STAND' + pageType: item.standType + '_STAND' } }) window.open(routeUrl.href, '_blank') diff --git a/src/pages/processCenter/pages/creatProcess/wfhxzg/step4.vue b/src/pages/processCenter/pages/creatProcess/wfhxzg/step4.vue index 9dacab355..1e94a8294 100644 --- a/src/pages/processCenter/pages/creatProcess/wfhxzg/step4.vue +++ b/src/pages/processCenter/pages/creatProcess/wfhxzg/step4.vue @@ -397,8 +397,8 @@ export default { name: 'OtherStandardDetails', params: { id: item.standId, - pageType: 'FOREIGN_STAND' - // pageType: item.standType + '_STAND' + // pageType: 'FOREIGN_STAND' + pageType: item.standType + '_STAND' } }) window.open(routeUrl.href, '_blank') diff --git a/src/pages/processCenter/pages/creatProcess/wfhxzg/step5.vue b/src/pages/processCenter/pages/creatProcess/wfhxzg/step5.vue index 6ac35d94c..19ce38b54 100644 --- a/src/pages/processCenter/pages/creatProcess/wfhxzg/step5.vue +++ b/src/pages/processCenter/pages/creatProcess/wfhxzg/step5.vue @@ -325,8 +325,8 @@ export default { name: 'OtherStandardDetails', params: { id: item.standId, - pageType: 'FOREIGN_STAND' - // pageType: item.standType + '_STAND' + // pageType: 'FOREIGN_STAND' + pageType: item.standType + '_STAND' } }) window.open(routeUrl.href, '_blank') diff --git a/src/pages/processCenter/pages/processDetail/index.vue b/src/pages/processCenter/pages/processDetail/index.vue index 233ebf577..61c5784cd 100644 --- a/src/pages/processCenter/pages/processDetail/index.vue +++ b/src/pages/processCenter/pages/processDetail/index.vue @@ -180,8 +180,6 @@ export default { row.taskInfo = row.name row.tabsName = this.$route.query.tabsName let prcType = this.detailData[index].prcType // 流程类型 - console.log(prcType) - console.log(row.taskInfo); // 判断当前流程是否已全部办理完成 this.detailData.map(item => { if (!item.endTime) { @@ -220,7 +218,9 @@ export default { this.toProcessDetail('xmpg2Step1-2',row) } //标准解读流程 - }else if(prcType === '9'){ + } else if (prcType === '8') { + this.toProcessDetail('wfhxzgStep5',row) + } else if(prcType === '9'){ this.toProcessDetail('bzjdStep1-6',row) //标准调研流程 }else if(prcType === '2'){ From 5d888a7cf6f28628c256f36e27c2710cd5f52832 Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Thu, 26 Aug 2021 10:24:28 +0800 Subject: [PATCH 05/21] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E8=AF=84=E4=BC=B0?= =?UTF-8?q?=E6=B5=81=E7=A8=8B2=20=E6=89=B9=E9=87=8F=E5=88=86=E5=8F=91?= =?UTF-8?q?=E8=B4=A3=E4=BB=BB=E4=BA=BAstep5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/xmpg2/step5.vue | 76 +++++++++++++++---- 1 file changed, 63 insertions(+), 13 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/xmpg2/step5.vue b/src/pages/processCenter/pages/creatProcess/xmpg2/step5.vue index 8c501b270..a6811563d 100644 --- a/src/pages/processCenter/pages/creatProcess/xmpg2/step5.vue +++ b/src/pages/processCenter/pages/creatProcess/xmpg2/step5.vue @@ -42,16 +42,18 @@ -
-
- 批量分发责任人 - -
-
+ + + + + + - @@ -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 18/21] =?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 19/21] =?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 dac4796046e7fb256441d60d45db7083dc114bde Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Fri, 27 Aug 2021 15:07:01 +0800 Subject: [PATCH 20/21] feat: There is no way the --- src/pages/searchCenter/pages/advancedSearch.vue | 11 ++++++++++- src/pages/searchCenter/pages/standardSearch.vue | 11 ++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/src/pages/searchCenter/pages/advancedSearch.vue b/src/pages/searchCenter/pages/advancedSearch.vue index 23a60ebce..e731586ed 100644 --- a/src/pages/searchCenter/pages/advancedSearch.vue +++ b/src/pages/searchCenter/pages/advancedSearch.vue @@ -987,7 +987,8 @@ width="180" :label="selectIndex === 'INLAND_STAND' ? '文本状态' : (this.selectIndex === 'INLAND_LAWS' ? '文件状态' : '文本状态')"> @@ -2492,6 +2493,14 @@ export default { @import '~@/assets/styles/mixins'; @import '~@/assets/styles/style'; +/deep/ .yellowClass{ + color: #E6A23C !important; +} + +/deep/ .redClass{ + color: #F56C6C !important; +} + #advancedSearch { background: #fff; @borderColor: #BFBFBF; diff --git a/src/pages/searchCenter/pages/standardSearch.vue b/src/pages/searchCenter/pages/standardSearch.vue index 1edd98e0c..10b36e37d 100644 --- a/src/pages/searchCenter/pages/standardSearch.vue +++ b/src/pages/searchCenter/pages/standardSearch.vue @@ -116,7 +116,9 @@ width="200"> @import '~@/assets/styles/mixins'; @import '~@/assets/styles/style'; + /deep/ .yellowClass{ + color: #E6A23C; + } + + /deep/ .redClass{ + color: #F56C6C; + } /deep/ p{ display: inline; } From 83f0c0ec833b27de6f70154f58428668da7bd933 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Fri, 27 Aug 2021 15:31:26 +0800 Subject: [PATCH 21/21] feat: There is no way the --- src/pages/searchCenter/pages/advancedSearch.vue | 4 ++-- src/pages/searchCenter/pages/standardSearch.vue | 11 +++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/pages/searchCenter/pages/advancedSearch.vue b/src/pages/searchCenter/pages/advancedSearch.vue index e731586ed..fccb551d2 100644 --- a/src/pages/searchCenter/pages/advancedSearch.vue +++ b/src/pages/searchCenter/pages/advancedSearch.vue @@ -976,8 +976,8 @@ :label="$t('m.putTime')" width="130"> diff --git a/src/pages/searchCenter/pages/standardSearch.vue b/src/pages/searchCenter/pages/standardSearch.vue index 10b36e37d..219773ddf 100644 --- a/src/pages/searchCenter/pages/standardSearch.vue +++ b/src/pages/searchCenter/pages/standardSearch.vue @@ -109,6 +109,17 @@
+ + +