This commit is contained in:
2025-08-13 19:49:05 +08:00
8 changed files with 769 additions and 13 deletions

View File

@ -134,7 +134,7 @@ const submitFormData = ref<StartProcessBo>({
const taskVariables = ref<Record<string, any>>({});
const flowCodeOptions = [
{
value: currentProject.value?.id + '_scheme',
value: currentProject.value?.id + '_completeScheme',
label: '设计方案审批'
}
];

View File

@ -264,7 +264,7 @@ const handleStartWorkFlow = async (data: LeaveForm) => {
};
//审批记录
const handleApprovalRecord = () => {
approvalRecordRef.value.init(form.value.id);
approvalRecordRef.value.init(form.value.design);
};
//提交回调
const submitCallback = async () => {