自动化代码中 批量删除功能增加未选择条目时提醒功能
This commit is contained in:
parent
ada8818960
commit
c5ed47192e
|
@ -210,6 +210,13 @@ export default {
|
||||||
},
|
},
|
||||||
async onDelete() {
|
async onDelete() {
|
||||||
const ids = []
|
const ids = []
|
||||||
|
if(this.multipleSelection.length == 0){
|
||||||
|
this.$message({
|
||||||
|
type: 'warning',
|
||||||
|
message: '请选择要删除的数据'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
this.multipleSelection &&
|
this.multipleSelection &&
|
||||||
this.multipleSelection.map(item => {
|
this.multipleSelection.map(item => {
|
||||||
ids.push(item.ID)
|
ids.push(item.ID)
|
||||||
|
|
Loading…
Reference in New Issue