From 8d974cde0c3bcdced4c91866348ad95499ae227b Mon Sep 17 00:00:00 2001 From: ye1023 <12588209+ye1023@user.noreply.gitee.com> Date: Wed, 8 Jul 2026 14:51:59 +0800 Subject: [PATCH] =?UTF-8?q?yxk-20260708=20=E5=85=9A=E5=A7=94=E4=BC=9A?= =?UTF-8?q?=E3=80=81=E6=89=80=E5=8A=A1=E4=BC=9A=E7=9A=84=E5=8F=8D=E9=A6=88?= =?UTF-8?q?=E5=AD=90=E8=A1=A8=E5=A2=9E=E5=8A=A02=E4=B8=AA=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=EF=BC=9A=E8=AE=A1=E5=88=92=E5=AE=8C=E6=88=90=E7=9B=AE?= =?UTF-8?q?=E6=A0=87=E5=92=8C=E8=AE=A1=E5=88=92=E5=AE=8C=E6=88=90=E6=97=B6?= =?UTF-8?q?=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bg/bgpartymatter/BgPartymatter.data.ts | 22 +++++++++++++++++-- .../bg/bgpartymatter/BgPartymatterList.vue | 2 +- .../BgPartymatterBPMFeedbackModal.vue | 16 +++++++++++--- .../components/BgPartymatterBPMForm.vue | 10 ++++++++- .../components/BgPartymatterFeedbackForm.vue | 12 ++++++++++ 5 files changed, 55 insertions(+), 7 deletions(-) diff --git a/src/views/bg/bgpartymatter/BgPartymatter.data.ts b/src/views/bg/bgpartymatter/BgPartymatter.data.ts index ad5f318..5ac2e03 100644 --- a/src/views/bg/bgpartymatter/BgPartymatter.data.ts +++ b/src/views/bg/bgpartymatter/BgPartymatter.data.ts @@ -159,7 +159,23 @@ export const bgPartymatterFeedbackColumns: BasicColumn[] = [ { title: '反馈人姓名', align:"center", - dataIndex: 'responPersonname' + dataIndex: 'responPersonname', + width: 110, + }, + { + title: '计划完成目标', + align:"center", + dataIndex: 'planExect' + }, + { + title: '计划完成日期', + align:"center", + dataIndex: 'planTime', + width: 120, + customRender:({text}) =>{ + text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text); + return text; + }, }, { title: '实际执行情况', @@ -169,12 +185,14 @@ export const bgPartymatterFeedbackColumns: BasicColumn[] = [ { title: '实际完成时间', align:"center", - dataIndex: 'actualTime' + dataIndex: 'actualTime', + width: 155, }, { title: '完成状态', align:"center", dataIndex: 'bpmStatus', + width: 95, customRender: ({ record }) => record?.bpmStatus_dictText || record?.bpmStatus }, // { diff --git a/src/views/bg/bgpartymatter/BgPartymatterList.vue b/src/views/bg/bgpartymatter/BgPartymatterList.vue index e5b0830..8091e22 100644 --- a/src/views/bg/bgpartymatter/BgPartymatterList.vue +++ b/src/views/bg/bgpartymatter/BgPartymatterList.vue @@ -112,7 +112,7 @@ :dataSource="getFeedbackTableData(record)" :loading="getFeedbackTableLoading(record)" :pagination="false" - :scroll="{ x: 1220 }" + :scroll="{ x: 1400 }" >