[update] 联调企标计划立项/变更流程

This commit is contained in:
lideqin
2023-10-26 16:35:57 +08:00
parent d6ecca66a0
commit 9578cde2b0
4 changed files with 85 additions and 55 deletions
@@ -88,35 +88,35 @@ export default {
title: this.$t('workCenter.processCenter.processNumber'),
align: 'center',
width: 180,
dataIndex: 'processNumber',
dataIndex: 'prcNum',
scopedSlots: { customRender: 'text' }
},
{ // 流程类型
title: this.$t('workCenter.processCenter.processType'),
align: 'center',
width: 180,
dataIndex: 'processType_dictText',
dataIndex: 'prcType_dictText',
scopedSlots: { customRender: 'text' }
},
{ // 流程名称
title: this.$t('processName'),
align: 'center',
width: 180,
dataIndex: 'processName',
dataIndex: 'prcName',
scopedSlots: { customRender: 'text' }
},
{ // 发起人
title: this.$t('workCenter.processCenter.initiator'),
align: 'center',
width: 180,
dataIndex: 'initiator',
dataIndex: 'createUserName',
scopedSlots: { customRender: 'text' }
},
{ // 接收任务时间
title: this.$t('workCenter.processCenter.receivingTaskTime'),
align: 'center',
width: 180,
dataIndex: 'receivingTaskTime',
dataIndex: 'receivedTaskTime',
sort: true,
scopedSlots: { customRender: 'text' }
},
@@ -148,8 +148,8 @@ export default {
path: path,
query: {
currentNode: record.currentNode,
processId: record.prcId, // 流程id
taskId: record.taskId
processId: record.id, // 流程id
taskId: record.taskId // 任务id
}
})
},