From b72b58ed6a8c98888bf7d0233036f30770135e8e Mon Sep 17 00:00:00 2001 From: danshihao Date: Wed, 17 Jan 2024 10:05:14 +0800 Subject: [PATCH] =?UTF-8?q?[fix=2080566]=E5=88=97=E8=A1=A8=E7=A9=BA?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=98=BE=E7=A4=BA-?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EnterpriseStandardInspectionPlanFlow.vue | 33 +++++++++++++------ .../EenterpriseStandardInspectionProcess.vue | 28 +++++++++++----- .../InspectionExtensionRequestProcess.vue | 30 ++++++++++++----- .../PermissionApplicationProcess.vue | 13 +++++--- 4 files changed, 72 insertions(+), 32 deletions(-) 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"> +