diff --git a/src/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow.vue b/src/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow.vue index 694bd97..1c11206 100644 --- a/src/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow.vue +++ b/src/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow.vue @@ -48,7 +48,11 @@ :columns="columns" :data-source="dataSource" :loading="tableLoading" - :pagination="false"/> + :pagination="false"> + +
@@ -151,55 +155,64 @@ export default { title: this.$t('esInspectionPlan.inspectionBasisStandardNumber'), align: 'center', width: 150, - dataIndex: 'inspectNo' + dataIndex: 'inspectNo', + scopedSlots: { customRender: 'text' } }, { // 稽查依据标准名称 title: this.$t('esInspectionPlan.inspectionBasisStandardName'), align: 'center', width: 150, - dataIndex: 'inspectName' + dataIndex: 'inspectName', + scopedSlots: { customRender: 'text' } }, { // 计划稽查对象 title: this.$t('esInspectionPlan.planInspectionObjects'), align: 'center', width: 120, - dataIndex: 'inspectObject_dictText' + dataIndex: 'inspectObject_dictText', + scopedSlots: { customRender: 'text' } }, { // 主责标准化工作组 title: this.$t('esInspectionPlan.mainDutyStandardizationGroup'), align: 'center', width: 150, - dataIndex: 'standardizationWorkGroup' + dataIndex: 'standardizationWorkGroup', + scopedSlots: { customRender: 'text' } }, { // 所属部门 title: this.$t('esInspectionPlan.department'), align: 'center', width: 120, - dataIndex: 'belongDept_dictText' + dataIndex: 'belongDept_dictText', + scopedSlots: { customRender: 'text' } }, { // 计划稽查日期 title: this.$t('esInspectionPlan.planInspectionDate'), align: 'center', width: 120, - dataIndex: 'planInspectDate' + dataIndex: 'planInspectDate', + scopedSlots: { customRender: 'text' } }, { // 稽查负责人 title: this.$t('esInspectionPlan.inspectionDirector'), align: 'center', width: 120, - dataIndex: 'inspectUserDictText' + dataIndex: 'inspectUserDictText', + scopedSlots: { customRender: 'text' } }, { // 标准化组对接人 title: this.$t('esInspectionPlan.standardizationGroupContactPerson'), align: 'center', width: 140, - dataIndex: 'standardizationDockingUserDictText' + dataIndex: 'standardizationDockingUserDictText', + scopedSlots: { customRender: 'text' } }, { // 发起人 title: this.$t('esInspectionPlan.initiator'), align: 'center', width: 120, - dataIndex: 'createByDictText' + dataIndex: 'createByDictText', + scopedSlots: { customRender: 'text' } } ], dataSource: [] diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/EenterpriseStandardInspectionProcess.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/EenterpriseStandardInspectionProcess.vue index d46fd61..b6f5db7 100644 --- a/src/views/workCenter/enterpriseStandardInspectionProcess/EenterpriseStandardInspectionProcess.vue +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/EenterpriseStandardInspectionProcess.vue @@ -48,6 +48,9 @@ :columns="columns" :data-source="dataSource" :pagination="false"> +