实现业务表单中督办状态,督办数量的修改

This commit is contained in:
wsm
2026-05-14 15:08:04 +08:00
parent d1bc4f2b78
commit 7f532b62c5
4 changed files with 32 additions and 27 deletions
+19 -19
View File
@@ -85,30 +85,30 @@ export const columns: BasicColumn[] = [
dataIndex: 'delayRiskMitigation',
},
{
title: '完成状态(0推进中,1已完成)',
title: '完成状态',
align: 'center',
dataIndex: 'completionStatus',
dataIndex: 'completionStatus_dictText',
},
{
title: '落实部门id',
title: '落实部门',
align: 'center',
dataIndex: 'implDept_dictText',
},
{
title: '层深(最顶层节点层深为0)',
align: 'center',
dataIndex: 'treeDepth',
},
{
title: '同级数据排序号',
align: 'center',
dataIndex: 'sortOrder',
},
{
title: '流程引擎状态字段',
align: 'center',
dataIndex: 'bpmStatus',
},
// {
// title: '层深(最顶层节点层深为0)',
// align: 'center',
// dataIndex: 'treeDepth',
// },
// {
// title: '同级数据排序号',
// align: 'center',
// dataIndex: 'sortOrder',
// // },
// {
// title: '流程引擎状态字段',
// align: 'center',
// dataIndex: 'bpmStatus',
// },
{
title: '督办次数',
align: 'center',
@@ -250,7 +250,7 @@ export const superQuerySchema = {
reportFeedbackStatus: { title: '报告反馈情况', order: 13, view: 'text', type: 'string' },
isCompletionRisk: { title: '是否存在完成风险(0不存在,1存在)', order: 14, view: 'number', type: 'number' },
delayRiskMitigation: { title: '拖期风险应对措施', order: 15, view: 'text', type: 'string' },
completionStatus: { title: '完成状态(0推进中,1已完成)', order: 16, view: 'number', type: 'number' },
completionStatus: { title: '完成状态(督办中,1已完成)', order: 16, view: 'number', type: 'number' },
implDept: { title: '落实部门id', order: 17, view: 'sel_depart', type: 'string' },
treeDepth: { title: '层深(最顶层节点层深为0)', order: 18, view: 'number', type: 'number' },
sortOrder: { title: '同级数据排序号', order: 19, view: 'number', type: 'number' },