From f0d384402887afc4d35834d8b2bc3a016b9dc82a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Thu, 21 Sep 2023 17:32:39 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E9=80=89=E6=A0=87=E5=87=86=E6=8A=BD?= =?UTF-8?q?=E5=B1=89=EF=BC=9A=E6=96=87=E6=9C=AC=E7=8A=B6=E6=80=81=E6=94=B9?= =?UTF-8?q?=E6=88=90=E6=A0=87=E5=87=86=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../selection/StandardModelSelectionModal.vue | 13 ++++++++++++- .../modules/SelectionDomesticStandardDrawer.vue | 6 +++++- .../modules/SelectionOverseasStandardDrawer.vue | 6 +++++- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/src/components/selection/StandardModelSelectionModal.vue b/src/components/selection/StandardModelSelectionModal.vue index 807f9431..a312eaff 100644 --- a/src/components/selection/StandardModelSelectionModal.vue +++ b/src/components/selection/StandardModelSelectionModal.vue @@ -95,6 +95,7 @@ export default { total: 0 }, columns: [ + // 标准号 { title: this.$t('number'), dataIndex: 'standardNumber', @@ -102,6 +103,7 @@ export default { align: 'center', width: 150 }, + // 标准名称 { title: this.$t('title'), dataIndex: 'standardName', @@ -109,8 +111,17 @@ export default { align: 'center', width: 150 }, + // 发布日期 { - title: this.$t('standardSelect.textState'), + title: this.$t('standardSelect.releaseDate'), + dataIndex: 'releaseDate', + align: 'center', + width: 120, + scopedSlots: { customRender: 'text' } + }, + // 标准状态 + { + title: this.$t('projectLibrary.vehicleItemLibrary.standardState'), dataIndex: 'standardState_dictText', align: 'center', width: 150 diff --git a/src/views/standardRegulationLibrary/domesticStandard/modules/SelectionDomesticStandardDrawer.vue b/src/views/standardRegulationLibrary/domesticStandard/modules/SelectionDomesticStandardDrawer.vue index c17e1fe3..0b153ad8 100644 --- a/src/views/standardRegulationLibrary/domesticStandard/modules/SelectionDomesticStandardDrawer.vue +++ b/src/views/standardRegulationLibrary/domesticStandard/modules/SelectionDomesticStandardDrawer.vue @@ -108,6 +108,7 @@ export default { total: 0 }, columns: [ + // 标准号 { title: this.$t('standardSelect.standardNumber'), dataIndex: 'standardNumber', @@ -115,6 +116,7 @@ export default { width: 150, scopedSlots: { customRender: 'detail' } }, + // 标准名称 { title: this.$t('standardSelect.standardName'), dataIndex: 'standardName', @@ -122,6 +124,7 @@ export default { width: 150, scopedSlots: { customRender: 'detail' } }, + // 发布日期 { title: this.$t('standardSelect.releaseDate'), dataIndex: 'releaseDate', @@ -129,8 +132,9 @@ export default { width: 120, scopedSlots: { customRender: 'text' } }, + // 标准状态 { - title: this.$t('standardSelect.textState'), + title: this.$t('projectLibrary.vehicleItemLibrary.standardState'), dataIndex: 'standardState_dictText', align: 'center', width: 120, diff --git a/src/views/standardRegulationLibrary/overseasStandard/modules/SelectionOverseasStandardDrawer.vue b/src/views/standardRegulationLibrary/overseasStandard/modules/SelectionOverseasStandardDrawer.vue index ffd8d2fe..78895252 100644 --- a/src/views/standardRegulationLibrary/overseasStandard/modules/SelectionOverseasStandardDrawer.vue +++ b/src/views/standardRegulationLibrary/overseasStandard/modules/SelectionOverseasStandardDrawer.vue @@ -108,6 +108,7 @@ export default { total: 0 }, columns: [ + // 标准号 { title: this.$t('standardSelect.standardNumber'), dataIndex: 'standardNumber', @@ -115,6 +116,7 @@ export default { width: 150, scopedSlots: { customRender: 'detail' } }, + // 标准名称 { title: this.$t('standardSelect.standardName'), dataIndex: 'standardName', @@ -122,6 +124,7 @@ export default { width: 150, scopedSlots: { customRender: 'detail' } }, + // 发布日期 { title: this.$t('standardSelect.releaseDate'), dataIndex: 'releaseDate', @@ -129,8 +132,9 @@ export default { width: 120, scopedSlots: { customRender: 'text' } }, + // 标准状态 { - title: this.$t('standardSelect.textState'), + title: this.$t('projectLibrary.vehicleItemLibrary.standardState'), dataIndex: 'standardState_dictText', align: 'center', width: 120,