BUG 30340
This commit is contained in:
@@ -108,7 +108,7 @@ export default {
|
||||
params: {departmentId, status: 1, cid}
|
||||
}).then(res => {
|
||||
if (res?.data) {
|
||||
res.data = res.data.map(e => ({...e, kind: "user"}))
|
||||
res.data = res.data.map(e => ({...e, kind: "user", checked: false}))
|
||||
this.options = [this.options, res.data].flat()
|
||||
}
|
||||
})
|
||||
@@ -160,7 +160,6 @@ export default {
|
||||
return !!this.selected.find(e => e.uid == uid)
|
||||
},
|
||||
handleCheck(row, i) {
|
||||
row.checked = !row.checked
|
||||
if (row.checked) {
|
||||
this.selected.push(row)
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user