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,