yxk-20260708

把把脉的反馈子表增加2个字段:计划完成目标和计划完成时间
This commit is contained in:
ye1023
2026-07-08 15:12:15 +08:00
parent 8d974cde0c
commit b2284adc30
4 changed files with 61 additions and 15 deletions
+12 -4
View File
@@ -112,7 +112,7 @@
:dataSource="getFeedbackTableData(record)"
:loading="getFeedbackTableLoading(record)"
:pagination="false"
:scroll="{ x: 1320 }"
:scroll="{ x: 1780 }"
>
<template #feedbackAttachments="{ record: feedbackRecord }">
<SUploadFile
@@ -219,15 +219,23 @@
// 反馈展开区只读展示子表数据,列配置与 BPM 办理页保持同一组核心反馈字段。
const feedbackExpandColumns: BasicColumn[] = [
{ title: '责任部门名称', dataIndex: 'responDeptname', align: 'center', width: 160 },
{ title: '反馈人姓名', dataIndex: 'responPersonname', align: 'center', width: 140 },
{ title: '反馈人姓名', dataIndex: 'responPersonname', align: 'center', width: 110 },
{ title: '计划完成目标', dataIndex: 'planExect', align: 'left', width: 260 },
{
title: '计划完成日期',
dataIndex: 'planTime',
align: 'center',
width: 120,
customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)),
},
{ title: '实际执行情况', dataIndex: 'actualExect', align: 'left', width: 280 },
{ title: '实际完成时间', dataIndex: 'actualTime', align: 'center', width: 180 },
{ title: '实际完成时间', dataIndex: 'actualTime', align: 'center', width: 155 },
{ title: '调整落实措施及执行情况', dataIndex: 'actSt', align: 'left', width: 260 },
{
title: '完成状态',
dataIndex: 'bpmStatus',
align: 'center',
width: 120,
width: 95,
customRender: ({ record }) => record?.bpmStatus_dictText || record?.bpmStatus,
},
{