Skip to content

Commit

Permalink
发布,修复多选组件的错误
Browse files Browse the repository at this point in the history
  • Loading branch information
duolabmeng6 committed Nov 12, 2023
1 parent 9f30f15 commit e055985
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,11 @@ function 鼠标按下(event, v) {
}
console.log(store.当前多选组件ID)
} else {
store.当前多选组件ID = [v.id]
if (v.pid != undefined) {
store.当前多选组件ID = [v.pid]
}else{
store.当前多选组件ID = [v.id]
}
}
store.当前组件索引 = v.id
Expand Down

0 comments on commit e055985

Please sign in to comment.