refactor(xispeak,dq): 业务状态列改名为督办状态,数据源切换为bpmStatus字段

数据字典统一使用super_status,与后端bpmStatus字段的@Dict注解保持一致。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
wsm
2026-07-10 10:26:22 +08:00
co-authored by Claude Opus 4.7
parent b7f6eef90a
commit c20f431011
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -96,9 +96,9 @@ export const columns: BasicColumn[] = [
// dataIndex: 'completionStatus_dictText',
// },
{
title: '业务状态',
title: '督办状态',
align: 'center',
dataIndex: 'status_dictText',
dataIndex: 'bpmStatus_dictText',
},
{
title: '截止日期',
@@ -281,7 +281,7 @@ export const superQuerySchema = {
deadline: { title: '截止日期', order: 17, view: 'date', type: 'string' },
treeDepth: { title: '层深(最顶层节点层深为0)', order: 18, view: 'number', type: 'number' },
sortOrder: { title: '同级数据排序号', order: 19, view: 'number', type: 'number' },
bpmStatus: { title: '流程引擎状态字段', order: 21, view: 'number', type: 'number' },
bpmStatus: { title: '督办状态', order: 21, view: 'list', type: 'string', dictCode: 'super_status' },
supervisionCount: { title: '督办次数', order: 22, view: 'number', type: 'number' },
approveInfo: { title: '审批信息', order: 23, view: 'text', type: 'string' },
};
@@ -296,8 +296,8 @@ export const ledgerColumns: BasicColumn[] = [
dataIndex: 'taskStatus'
},
{
title: '业务状态',
title: '督办状态',
align:"center",
dataIndex: 'status_dictText'
dataIndex: 'bpmStatus_dictText'
},
];