用户解封增加空数据判断逻辑

dev
smallchill 4 years ago
parent a0d96c0319
commit ceee624490
  1. 4
      src/views/system/user.vue

@ -868,6 +868,10 @@ import {
this.platformBox = true;
},
handleLock() {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择账号解封?", {
confirmButtonText: "确定",
cancelButtonText: "取消",

Loading…
Cancel
Save