From 223e0b618e1f030ebf7f9740b0302a066fa321ed Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Mon, 20 Dec 2021 09:59:25 +0800 Subject: [PATCH 01/18] =?UTF-8?q?=E5=9B=BD=E5=86=85=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=97=A0=E6=B3=95=E4=BD=BF=E7=94=A8=E6=98=AF=E5=9B=A0=E4=B8=BA?= =?UTF-8?q?=20formData.startIssueTime=20=3D=20formData.issueTime=3FformDat?= =?UTF-8?q?a.issueTime[0]:null=20=20=20=20=20=20=20formData.endIssueTime?= =?UTF-8?q?=20=3D=20formData.issueTime=3FformData.issueTime[1]:null?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domesticStandardsAndRegulations/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue index 0805c19ad..3fdf0f328 100644 --- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue @@ -4307,8 +4307,8 @@ export default { } formData.advanceSearchVOStr = JSON.stringify(advanceSearchVOList); this.SarExportSearchEo = formData - formData.startIssueTime = formData.issueTime[0] - formData.endIssueTime = formData.issueTime[1] + formData.startIssueTime = formData.issueTime?formData.issueTime[0]:null + formData.endIssueTime = formData.issueTime?formData.issueTime[1]:null formData.issueTime = null this.loading = true From 9569715d4bb03c006042a0e00964bc6b25f2ff2c Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Mon, 20 Dec 2021 10:02:39 +0800 Subject: [PATCH 02/18] =?UTF-8?q?=E6=B5=B7=E5=A4=96=E7=9A=84=E9=AB=98?= =?UTF-8?q?=E7=BA=A7=E6=9F=A5=E8=AF=A2=20=E5=8F=91=E5=B8=83=E6=97=A5?= =?UTF-8?q?=E6=9C=9F=E8=8C=83=E5=9B=B4=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../foreignStandardsAndRegulations/index.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue index 6f35d9e4c..35a233385 100644 --- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue @@ -3759,6 +3759,10 @@ export default { } formData.advanceSearchVOStr = JSON.stringify(advanceSearchVOList); + this.SarExportSearchEo = formData + formData.startIssueTime = formData.issueTime?formData.issueTime[0]:null + formData.endIssueTime = formData.issueTime?formData.issueTime[1]:null + formData.issueTime = null this.SarExportSearchEo = formData this.$http.get('sarStandardsInfo/sar-standards-info/getSarStandardsInfoPage', formData, { From ddba77a8fb856ea8d07794c91fe586236100648e Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Mon, 20 Dec 2021 10:10:59 +0800 Subject: [PATCH 03/18] =?UTF-8?q?=E8=B5=84=E6=96=99=E4=B8=AD=E5=BF=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/regulatoryRepository/dataCenter/index.vue | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/pages/regulatoryRepository/dataCenter/index.vue b/src/pages/regulatoryRepository/dataCenter/index.vue index 5149390bb..f1368e55c 100644 --- a/src/pages/regulatoryRepository/dataCenter/index.vue +++ b/src/pages/regulatoryRepository/dataCenter/index.vue @@ -426,14 +426,7 @@ export default { }, }, mounted() { - this.$http.get('fileMaterialCenter/file-material', this.dataCenterSearch, { - _this: this - }, res => { - this.dataCenterTable = res.data.records - this.dataCenterSearch.total = res.data.total - }, e => { - console.log(e) - }) + this.searchInfo() } } From c967003fdb1ab08c500c5973fc4bd1914aa33b2e Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Mon, 20 Dec 2021 10:15:57 +0800 Subject: [PATCH 04/18] =?UTF-8?q?=E8=B5=84=E6=96=99=E4=B8=AD=E5=BF=83=20-?= =?UTF-8?q?=20loading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/regulatoryRepository/dataCenter/index.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/regulatoryRepository/dataCenter/index.vue b/src/pages/regulatoryRepository/dataCenter/index.vue index f1368e55c..ef76a4595 100644 --- a/src/pages/regulatoryRepository/dataCenter/index.vue +++ b/src/pages/regulatoryRepository/dataCenter/index.vue @@ -309,6 +309,7 @@ export default { this.searchInfo() }, searchInfo() { + this.loading = true this.dataCenterSearch.startDataUploadTime = this.dataCenterSearch.dataUploadTime[0] this.dataCenterSearch.endDataUploadTime = this.dataCenterSearch.dataUploadTime[1] this.$http.get('fileMaterialCenter/file-material', this.dataCenterSearch, { @@ -316,8 +317,10 @@ export default { }, res => { this.dataCenterTable = res.data.records this.dataCenterSearch.total = res.data.total + this.loading = false }, e => { console.log(e) + this.loading = false }) }, clearSearch() { From 2fe29d3f101bef40571b04f65a94602aada0115c Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Mon, 20 Dec 2021 10:18:41 +0800 Subject: [PATCH 05/18] =?UTF-8?q?=E8=B5=84=E6=96=99=E4=B8=AD=E5=BF=83=20-?= =?UTF-8?q?=20=E6=8F=90=E4=BA=A4=E6=8C=89=E9=92=AEloading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/regulatoryRepository/dataCenter/index.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pages/regulatoryRepository/dataCenter/index.vue b/src/pages/regulatoryRepository/dataCenter/index.vue index ef76a4595..6b8a3cf09 100644 --- a/src/pages/regulatoryRepository/dataCenter/index.vue +++ b/src/pages/regulatoryRepository/dataCenter/index.vue @@ -182,6 +182,7 @@ size="mini" icon="el-icon-check" @click="saveInfo" + :loading="submitLoading" >提交 @@ -205,6 +206,7 @@ export default { data() { return { loading: false, + submitLoading: false, fileList: [], attributeTitle: '', showInfoModal: false, @@ -376,6 +378,7 @@ export default { // this.attributeEO.attachFileId = fileIdList.join(',') }, saveInfo() { + this.submitLoading = true this.$refs['attributeEO'].validate((valid) => { if (valid && this.attributeEO.attachFileId !== '') { if (this.attributeTitle === '新增'){ @@ -388,6 +391,7 @@ export default { (res) => { if (res.ok) { this.$message.success('新增成功') + this.submitLoading = false this.cancelModel() this.searchInfo() } @@ -403,6 +407,7 @@ export default { (res) => { if (res.ok) { this.$message.success('修改成功') + this.submitLoading = false this.cancelModel() this.searchInfo() } @@ -412,6 +417,7 @@ export default { } else { this.$message.error('附件不能为空') + this.submitLoading = false } }) From d2e99dacb86ae914c132fac1790fddc6df74a0d7 Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Mon, 20 Dec 2021 11:12:58 +0800 Subject: [PATCH 06/18] =?UTF-8?q?=E8=B5=84=E6=96=99=E4=B8=AD=E5=BF=83=20-?= =?UTF-8?q?=201366=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/regulatoryRepository/dataCenter/index.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/regulatoryRepository/dataCenter/index.vue b/src/pages/regulatoryRepository/dataCenter/index.vue index 6b8a3cf09..822529d62 100644 --- a/src/pages/regulatoryRepository/dataCenter/index.vue +++ b/src/pages/regulatoryRepository/dataCenter/index.vue @@ -94,6 +94,7 @@ - + @@ -52,7 +52,7 @@
{{ timeDay.day || nowDate }}
- +
暂无会议
@@ -74,8 +74,13 @@
会议附件 : {{ '-' }} - - {{ res.name }} {{ ';'}} + + + {{ res.name.slice(0, 30) + '...' }} {{ ';' }} + + + {{ res.name }} {{ ';' }} +
@@ -87,7 +92,7 @@