update 优化 流程提交用户id使用字符串提交避免雪花id失真问题

This commit is contained in:
疯狂的狮子Li 2024-10-17 18:15:18 +08:00
parent a62a3de23c
commit 6f4891d677

View File

@ -192,8 +192,8 @@ const handleStartWorkFlow = async (data: LeaveVO) => {
taskVariables.value = {
entity: data,
leaveDays: data.leaveDays,
userList: [1, 3],
userList2: [1, 3]
userList: ["1", "3"],
userList2: ["1", "3"]
};
submitFormData.value.variables = taskVariables.value;
const resp = await startWorkFlow(submitFormData.value);