提交 82509eb5 编写于 作者: Mr.奇淼('s avatar Mr.奇淼(

自动化代码中 批量删除功能增加未选择条目时提醒功能

上级 2a2bf7f0
......@@ -210,6 +210,13 @@ export default {
},
async onDelete() {
const ids = []
if(this.multipleSelection.length == 0){
this.$message({
type: 'warning',
message: '请选择要删除的数据'
})
return
}
this.multipleSelection &&
this.multipleSelection.map(item => {
ids.push(item.ID)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册