yxk-20260714

拆分我的待阅已阅并新增抄送轻量列表接口

- 新增抄送阅读状态支持,ext_act_task_cc 增加 isRead/readTime 映射
- 新增抄送已阅接口,校验当前用户必须为抄送接收人
- 新增我的抄送轻量列表接口 /act/process/extActTaskCc/myList
- 轻量列表以 ext_act_task_cc 为主表查询,返回业务标题、流程名称、抄送节点、发起人、抄送人、抄送时间、已阅时间等字段
- 前端拆分为我的待阅、我的已阅页面,旧我的抄送页面兼容待阅
- 前端列表切换到轻量接口,移除办理人、开始时间、结束时间、耗时等历史任务字段
- 加宽业务标题列,门户待阅预览同步调整
- 新增 Flyway 菜单迁移和抄送查询索引
This commit is contained in:
ye1023
2026-07-14 14:14:19 +08:00
parent 167308f14d
commit 4164cb5b26
7 changed files with 145 additions and 38 deletions
@@ -115,7 +115,7 @@
showIndexColumn: true,
showTableSetting: false,
canResize: false,
scroll: { x: 900 },
scroll: { x: 1050 },
actionColumn: { dataIndex: 'action', fixed: 'right', width: 120 },
useSearchForm: false,
},
@@ -4,25 +4,32 @@ export const ccColumns: BasicColumn[] = [
{
title: '业务标题',
align: 'center',
width: 320,
dataIndex: 'bpmBizTitle',
ellipsis: true,
},
{
title: '任务名称',
title: '抄送节点',
align: 'center',
width: 260,
width: 160,
dataIndex: 'taskName',
},
{
title: '发起人',
align: 'center',
width: 160,
width: 120,
dataIndex: 'processApplyUserName',
},
{
title: '办理人',
title: '抄送人',
align: 'center',
width: 160,
dataIndex: 'taskAssigneeName',
width: 120,
dataIndex: 'ccFromUserName',
},
{
title: '抄送时间',
align: 'center',
width: 170,
dataIndex: 'ccCreateTime',
},
];