Commit f0c797de by Lesan

fix: 雪花id导致int精度丢失

parent 6e077ac7
...@@ -172,7 +172,7 @@ const resetTaskForm = () => { ...@@ -172,7 +172,7 @@ const resetTaskForm = () => {
} else { } else {
userTaskForm.value.candidateParam = businessObject.candidateParam userTaskForm.value.candidateParam = businessObject.candidateParam
.split(',') .split(',')
.map((item) => +item) .map((item) => item)
} }
} else { } else {
userTaskForm.value.candidateParam = [] userTaskForm.value.candidateParam = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment