fix : 首页待办列表

This commit is contained in:
2024-05-11 21:48:16 +08:00
parent 44ed106775
commit b58dfcb566
2 changed files with 28 additions and 13 deletions

View File

@@ -105,25 +105,30 @@ const todoNum = ref(20)
const tableConfig = reactive({
columns: [
{
prop: 'taskId',
label: '单据编号',
prop: 'processName',
label: '流程名称',
align: 'center',
},
{
prop: 'nickName',
label: '消息主题',
prop: 'initiatorName',
label: '发起人',
align: 'center',
},
{
prop: 'type',
prop: 'state',
label: '类型',
align: 'center',
showOverflowTooltip: false,
currentRender: ({row, index}) => (<Tag dictType={'todo_type'} value={row.state}/>)
},
{
prop: 'createTime',
label: '创建时间',
prop: 'submitTime',
label: '提交时间',
align: 'center',
},
{
prop: 'taskName',
label: '当前节点',
align: 'center',
},
{