yxk-20260518-待办列表增加deadline字段,从task表获取数据

This commit is contained in:
ye1023
2026-05-18 09:46:56 +08:00
parent 0d4d3b0c09
commit 1d74213d35
2 changed files with 124 additions and 117 deletions
@@ -10,10 +10,20 @@ export const columns: BasicColumn[] = [
// align: "center",
// dataIndex: 'flowCode'
// },
{
title: '督办标题',
align: "center",
dataIndex: 'title',
},
{
title: '督办内容',
align: "center",
dataIndex: 'content',
},
{
title: '流程名称',
align: "center",
dataIndex: 'flowName'
dataIndex: 'flowName',
},
{
title: '流程实例ID',
@@ -45,51 +55,42 @@ export const columns: BasicColumn[] = [
align: "center",
dataIndex: 'businessTablename'
},
{
title: '外部来源 ID',
align: "center",
dataIndex: 'sourceId'
},
{
title: '任务标题',
align: "center",
dataIndex: 'title'
},
{
title: '任务内容',
align: "center",
dataIndex: 'content'
},
// {
// title: '外部来源 ID',
// align: "center",
// dataIndex: 'sourceId'
// },
{
title: '紧急程度(一般/紧急/特急)',
align: "center",
dataIndex: 'urgencyLevel_dictText'
},
{
title: '自定义分组',
align: "center",
dataIndex: 'customGroup'
},
{
title: '所属任务清单 ID',
align: "center",
dataIndex: 'taskListId'
},
{
title: '所属任务清单名称',
align: "center",
dataIndex: 'taskListName'
},
{
title: '是否为里程碑节点',
align: "center",
dataIndex: 'milestone'
},
{
title: '任务完成方式',
align: "center",
dataIndex: 'finishMethod'
},
// {
// title: '自定义分组',
// align: "center",
// dataIndex: 'customGroup'
// },
// {
// title: '所属任务清单 ID',
// align: "center",
// dataIndex: 'taskListId'
// },
// {
// title: '所属任务清单名称',
// align: "center",
// dataIndex: 'taskListName'
// },
// {
// title: '是否为里程碑节点',
// align: "center",
// dataIndex: 'milestone'
// },
// {
// title: '任务完成方式',
// align: "center",
// dataIndex: 'finishMethod'
// },
{
title: '被督办部门id',
align: "center",
@@ -100,36 +101,36 @@ export const columns: BasicColumn[] = [
align: "center",
dataIndex: 'deptName'
},
{
title: '部门负责人id',
align: "center",
dataIndex: 'deptLeaderId_dictText'
},
{
title: '部门负责人姓名(冗余)',
align: "center",
dataIndex: 'deptLeaderName'
},
{
title: '部门经办人id(负责人指派后填入)',
align: "center",
dataIndex: 'deptHandlerId_dictText'
},
{
title: '部门经办人姓名(冗余)',
align: "center",
dataIndex: 'deptHandlerName'
},
{
title: '关注人 ID 列表',
align: "center",
dataIndex: 'followerIds'
},
{
title: '关注人姓名列表,冗余',
align: "center",
dataIndex: 'followerNames'
},
// {
// title: '部门负责人id',
// align: "center",
// dataIndex: 'deptLeaderId_dictText'
// },
// {
// title: '部门负责人姓名(冗余)',
// align: "center",
// dataIndex: 'deptLeaderName'
// },
// {
// title: '部门经办人id(负责人指派后填入)',
// align: "center",
// dataIndex: 'deptHandlerId_dictText'
// },
// {
// title: '部门经办人姓名(冗余)',
// align: "center",
// dataIndex: 'deptHandlerName'
// },
// {
// title: '关注人 ID 列表',
// align: "center",
// dataIndex: 'followerIds'
// },
// {
// title: '关注人姓名列表,冗余',
// align: "center",
// dataIndex: 'followerNames'
// },
{
title: '要求完成日期(业务层面的硬性要求)',
align: "center",
@@ -170,46 +171,46 @@ export const columns: BasicColumn[] = [
align: "center",
dataIndex: 'duration'
},
{
title: '子任务完成进度(0.00~100.00,参考飞书子任务进度)',
align: "center",
dataIndex: 'subTaskProgress'
},
{
title: '父任务 ID',
align: "center",
dataIndex: 'parentTaskId'
},
{
title: '前置任务 ID 列表,逗号分隔',
align: "center",
dataIndex: 'preTaskIds'
},
{
title: '后置任务 ID 列表,逗号分隔',
align: "center",
dataIndex: 'nextTaskIds'
},
{
title: '子任务数',
align: "center",
dataIndex: 'subTaskCount'
},
{
title: '流程序列号',
align: "center",
dataIndex: 'processCodenumber'
},
{
title: '表单组件路径',
align: "center",
dataIndex: 'formUrl'
},
{
title: '流程变量',
align: "center",
dataIndex: 'jsonDataString'
},
// {
// title: '子任务完成进度(0.00~100.00,参考飞书子任务进度)',
// align: "center",
// dataIndex: 'subTaskProgress'
// },
// {
// title: '父任务 ID',
// align: "center",
// dataIndex: 'parentTaskId'
// },
// {
// title: '前置任务 ID 列表,逗号分隔',
// align: "center",
// dataIndex: 'preTaskIds'
// },
// {
// title: '后置任务 ID 列表,逗号分隔',
// align: "center",
// dataIndex: 'nextTaskIds'
// },
// {
// title: '子任务数',
// align: "center",
// dataIndex: 'subTaskCount'
// },
// {
// title: '流程序列号',
// align: "center",
// dataIndex: 'processCodenumber'
// },
// {
// title: '表单组件路径',
// align: "center",
// dataIndex: 'formUrl'
// },
// {
// title: '流程变量',
// align: "center",
// dataIndex: 'jsonDataString'
// },
];
// 高级查询数据
@@ -28,11 +28,6 @@ export const columns: BasicColumn[] = [
dataIndex: 'processDefinitionName',
ellipsis: true,
},
{
title: '流程实例',
align: 'center',
dataIndex: 'processInstanceId',
},
{
title: '发起人',
width: 110,
@@ -40,10 +35,21 @@ export const columns: BasicColumn[] = [
dataIndex: 'processApplyUserName',
},
{
title: '开始时间',
title: '转入时间',
align: 'center',
dataIndex: 'taskBeginTime',
},
{
title: '事项截止时间',
align: 'center',
width: 170,
dataIndex: 'deadline',
},
{
title: '流程实例',
align: 'center',
dataIndex: 'processInstanceId',
},
{
title: '流程编号',
align: 'center',