{{ sarStandardsInfoEO.standName || '-' }}
{{ sarStandardsInfoEO.standEnName || '-' }}
- {{ sarStandardsInfoEO.standStatusShow || '-' }}
@@ -2029,7 +2029,11 @@ export default { field['tips'] = tips } if (value && typeof value === 'number') { - value = this.$dateFormat(value, 'yyyy-MM-dd') + value = this.$moment(value).format('YYYY-MM-DD') + } + // 时间格式处理 + if (field.attrType === 'DATE_PICKER' && value) { + value = this.$moment(value).format('YYYY-MM-DD') } field['value'] = value if (field.showRegionId === location.value) { From 53b8c2657e81ea8beabe51d26e80de668615c8b0 Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Tue, 7 Sep 2021 15:17:29 +0800 Subject: [PATCH 04/10] feat: There is no way the #47918 --- .../components/EnterpriseStandardDatabase.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue index 79f359ad7..852f35551 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue @@ -3401,10 +3401,10 @@ export default { this.SarExportSearchEo = item } // 处理我的收藏和个性化标签传参 - if (this.selectSarMenu.id === 'wdsc') { + if (this.selectSarMenu.id === 'qbwdsc') { this.sarBussionessSearch.menuId = undefined this.sarBussionessSearch.labelMenuId = undefined - this.sarBussionessSearch.collectMenuId = 'wdsc' + this.sarBussionessSearch.collectMenuId = 'qbwdsc' } else if (this.selectSarMenu.id === 'gxhbq' || this.selectSarMenu.pId === 'gxhbq') { this.sarBussionessSearch.menuId = undefined this.sarBussionessSearch.labelMenuId = this.selectSarMenu.id From e7153cc84776eee35657aac1cf4d86dde2b1ccbf Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Tue, 7 Sep 2021 15:33:59 +0800 Subject: [PATCH 05/10] feat: There is no way the #47887 --- .../components/EnterpriseStandardDatabase.vue | 6 ++++-- src/pages/searchCenter/pages/advancedSearch.vue | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue index 852f35551..8472b93f2 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue @@ -1930,12 +1930,14 @@ export default { if(checkedData) { if(checkedData.length > 0){ this.sarBussionessStandEO.VPPSBMBUSS = checkedData.map(item => item.code).join(",") - this.sarBussionessSearch.VPPSBMBUSS = checkedData.map(item => item.code).join(",") this.sarBussionessStandEO.VPPSCNBUSS = checkedData.map(item => item.chineseName).join(",") + this.sarBussionessSearch.VPPSBMBUSS = checkedData.map(item => item.code).join(",") + this.sarBussionessSearch.VPPSCNBUSS = checkedData.map(item => item.chineseName).join(",") }else { this.sarBussionessStandEO.VPPSBMBUSS = checkedData.code - this.sarBussionessSearch.VPPSBMBUSS = checkedData.code this.sarBussionessStandEO.VPPSCNBUSS = checkedData.chineseName + this.sarBussionessSearch.VPPSBMBUSS = checkedData.code + this.sarBussionessSearch.VPPSCNBUSS = checkedData.chineseName } } this.modalShowFlag2 = false diff --git a/src/pages/searchCenter/pages/advancedSearch.vue b/src/pages/searchCenter/pages/advancedSearch.vue index 8168842a6..fd01ef46e 100644 --- a/src/pages/searchCenter/pages/advancedSearch.vue +++ b/src/pages/searchCenter/pages/advancedSearch.vue @@ -1502,8 +1502,10 @@ export default { if(checkedData) { if(checkedData.length > 0){ this.standForm.VPPSBMBUSS = checkedData.map(item => item.code).join(",") + this.standForm.VPPSCNBUSS = checkedData.map(item => item.chineseName).join(",") }else { this.standForm.VPPSBMBUSS = checkedData.code + this.standForm.VPPSCNBUSS = checkedData.chineseName } } this.modalShowFlag2 = false From 987f442c6467ea39ae3eeccd202773c4b01f1d2f Mon Sep 17 00:00:00 2001 From: "zhaokaiyao@91isoft.com" <6922339zky> Date: Wed, 8 Sep 2021 17:27:47 +0800 Subject: [PATCH 06/10] =?UTF-8?q?=E5=9B=BD=E5=86=85=E5=A4=96=E8=AF=A6?= =?UTF-8?q?=E6=83=85->=E6=96=87=E6=9C=AC=E7=8A=B6=E6=80=81->=E5=8F=B9?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/details/otherStandardDetails/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue index 8a4d22587..8bb8a7bd5 100644 --- a/src/pages/details/otherStandardDetails/index.vue +++ b/src/pages/details/otherStandardDetails/index.vue @@ -63,7 +63,7 @@+ >文本状态 {{ textStatusMap[sarStandardsInfoEO.textStatus] || '-' }}
{{
From 17d53c28771264faef2a7ab6b97fb6c73f4f475a 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, 8 Sep 2021 17:47:42 +0800
Subject: [PATCH 07/10] commit
---
src/pages/config/pages/mechanismManage/index.vue | 2 +-
.../accessStandardsAndRegulations/pages/details.vue | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/pages/config/pages/mechanismManage/index.vue b/src/pages/config/pages/mechanismManage/index.vue
index 8d72796c6..07bfb775a 100644
--- a/src/pages/config/pages/mechanismManage/index.vue
+++ b/src/pages/config/pages/mechanismManage/index.vue
@@ -325,7 +325,7 @@ export default {
watch: {
filterText(val) {
this.$refs.tree.filter(val);
- }
+ },
},
mounted () {
// 获取组织结构树
diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue
index 9527ef9ca..c8368e9f5 100644
--- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue
+++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue
@@ -16,7 +16,7 @@
- {{ sarAccessEO.countryArea }}
+ {{ sarAccessEO.countryAreaShow }}
点击或拖拽上传文件
+点击或拖拽上传文件
+