This commit is contained in:
刘召雪
2020-11-23 09:21:25 +08:00
parent 38512c153e
commit 13fbb593d9

View File

@ -146,7 +146,7 @@ export default {
this.areaOpen = false; this.areaOpen = false;
this.getList(); this.getList();
}else { }else {
this.msgSuccess(res.msg); this.msgError(res.msg);
} }
}) })
}, },
@ -185,7 +185,7 @@ export default {
this.getList(); this.getList();
this.msgSuccess("删除成功"); this.msgSuccess("删除成功");
} else { } else {
this.msgSuccess(res.msg); this.msgError(res.msg);
} }
}) })
.catch((res) => { }); .catch((res) => { });
@ -197,4 +197,7 @@ export default {
</script> </script>
<style> <style>
.el-checkbox{
width: 50px;
}
</style> </style>