fix:【bpm 工作流】已办任务的审批状态过滤不正确

This commit is contained in:
YunaiV
2025-10-02 09:35:46 +08:00
parent 92c433a6aa
commit 783f510229

View File

@@ -42,14 +42,11 @@ export function useGridFormSchema(): VbenFormSchema[] {
},
{
fieldName: 'status',
label: '流程状态',
label: '审批状态',
component: 'Select',
componentProps: {
options: getDictOptions(
DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS,
'number',
),
placeholder: '请选择流程状态',
options: getDictOptions(DICT_TYPE.BPM_TASK_STATUS, 'number'),
placeholder: '请选择审批状态',
allowClear: true,
},
},