!114 fix(bg): 再次督办时督办标题追加阿拉伯数字次数信息

Merge pull request !114 from wsm/fix/20260724_v2
This commit is contained in:
wsm
2026-07-24 06:47:58 +00:00
committed by Gitee
2 changed files with 2 additions and 2 deletions
@@ -567,7 +567,7 @@
: '发起流程'; : '发起流程';
flowScheduleModalRef.value?.open({ flowScheduleModalRef.value?.open({
title, title,
taskTitle: record?.title, taskTitle: nextCount > 1 ? `${record?.title || ''}${nextCount}次督办` : record?.title,
payload: { record }, payload: { record },
deptOptions: getResponsibleDeptOptions(record), deptOptions: getResponsibleDeptOptions(record),
showSuoleaderFields: true, showSuoleaderFields: true,
+1 -1
View File
@@ -490,7 +490,7 @@
: '发起流程'; : '发起流程';
flowScheduleModalRef.value?.open({ flowScheduleModalRef.value?.open({
title, title,
taskTitle: record?.title, taskTitle: nextCount > 1 ? `${record?.title || ''}${nextCount}次督办` : record?.title,
payload: { record }, payload: { record },
deptOptions: getResponsibleDeptOptions(record), deptOptions: getResponsibleDeptOptions(record),
showSuoleaderFields: true, showSuoleaderFields: true,