From a3393e77e09695c562a0b48fdd603a672fda50a2 Mon Sep 17 00:00:00 2001 From: pyt <626651354@qq.com> Date: 星期五, 13 六月 2025 09:15:40 +0800 Subject: [PATCH] fix --- culture/src/views/system/user/index.vue | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/culture/src/views/system/user/index.vue b/culture/src/views/system/user/index.vue index 05ef885..73abfb5 100644 --- a/culture/src/views/system/user/index.vue +++ b/culture/src/views/system/user/index.vue @@ -146,7 +146,7 @@ delConfirm() { delDept(this.delId).then(() => { this.delShow = false - this.msgsuccess('删除成功') + this.$message.success('删除成功') this.getListData() }) }, @@ -154,7 +154,7 @@ changeStatus({ ...form, status: 1 }).then(() => { this.disbDialogVisible = false this.disbRow = {} - this.msgsuccess('禁用成功') + this.$message.success('禁用成功') this.getListData() }) }, @@ -163,14 +163,14 @@ edit(form).then(() => { this.row = {} this.dialogVisible = false - this.msgsuccess('修改成功') + this.$message.success('修改成功') this.getListData() }) } else { add(form).then(() => { this.row = {} this.dialogVisible = false - this.msgsuccess('添加成功') + this.$message.success('添加成功') this.getListData() }) } @@ -179,7 +179,7 @@ updatePwd(form).then(() => { this.row = {} this.passwordVisible = false - this.msgsuccess('修改密码成功') + this.$message.success('修改密码成功') this.getListData() }) }, @@ -198,7 +198,7 @@ updateStatus(row, type) { if (type) { changeStatus({ ...row, status: 0 }).then(() => { - this.msgsuccess('启用成功') + this.$message.success('启用成功') this.getListData() }) } else { -- Gitblit v1.7.1