master
Qin Dong Ming 2024-08-26 09:22:35 +08:00
parent cb224e5fec
commit 4a011c2f8f
1 changed files with 5 additions and 3 deletions

View File

@ -284,9 +284,11 @@ export default {
}, },
handleDelete(id){ handleDelete(id){
del(id).then(res =>{ del(id).then(res =>{
// if (res.data.code==200){
if (confirm("是否删除这条数据?")){ //
this.$message.success(res.msg || "删除成功") if (confirm("是否删除这条数据?")){
this.$message.success(res.msg || "删除成功")
}
} }
}) })
}, },