diff --git a/src/common/lang/en-us.js b/src/common/lang/en-us.js index d4cc091f..ccd45965 100644 --- a/src/common/lang/en-us.js +++ b/src/common/lang/en-us.js @@ -534,7 +534,8 @@ module.exports = { standardNumber: 'Standard number', standardName: 'Standard name', releaseDate: 'Release date', - textState: 'Text state' + textState: 'Text state', + evaluationState: 'Evaluation state' }, // 企标计划选择器 enterprisePlanSelect: { diff --git a/src/common/lang/zh-cn.js b/src/common/lang/zh-cn.js index f9cc813f..202433fc 100644 --- a/src/common/lang/zh-cn.js +++ b/src/common/lang/zh-cn.js @@ -577,7 +577,8 @@ module.exports = { standardNumber: '标准编号', standardName: '标准名称', releaseDate: '发布日期', - textState: '标准状态' + textState: '标准状态', + evaluationState: '评估状态' }, // 企标计划选择器 enterprisePlanSelect: { diff --git a/src/views/workCenter/projectComplianceEvaluationProcess/modules/SelectStandardListDrawer.vue b/src/views/workCenter/projectComplianceEvaluationProcess/modules/SelectStandardListDrawer.vue index 5dad3c16..25c05559 100644 --- a/src/views/workCenter/projectComplianceEvaluationProcess/modules/SelectStandardListDrawer.vue +++ b/src/views/workCenter/projectComplianceEvaluationProcess/modules/SelectStandardListDrawer.vue @@ -95,33 +95,43 @@ export default { total: 0 }, columns: [ + // 标准编号 { title: this.$t('standardNumber'), dataIndex: 'standardNumber', ellipsis: true, align: 'center', - width: 150 + width: 200 }, + // 标准名称 { title: this.$t('standardName'), dataIndex: 'standardName', ellipsis: true, align: 'center', - width: 150 + width: 200 }, // 发布日期 { title: this.$t('standardSelect.releaseDate'), dataIndex: 'releaseDate', align: 'center', - width: 120, + width: 90, scopedSlots: { customRender: 'text' } }, + // 标准状态 { title: this.$t('standardSelect.textState'), dataIndex: 'standardState_dictText', align: 'center', - width: 150 + width: 90 + }, + // 评估状态 + { + title: this.$t('standardSelect.evaluationState'), + dataIndex: 'processStatus_dictText', + align: 'center', + width: 90 } ], dataList: [],