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

pull/610/head
Lesan 2024-12-04 11:41:06 +08:00
parent 6e077ac7d9
commit f0c797deac
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ const resetTaskForm = () => {
} else {
userTaskForm.value.candidateParam = businessObject.candidateParam
.split(',')
.map((item) => +item)
.map((item) => item)
}
} else {
userTaskForm.value.candidateParam = []