From c67b37d706daedbc7c4efc74ddadc8f591524b46 Mon Sep 17 00:00:00 2001
From: 董国庆 <364620639@qq.com>
Date: 星期一, 16 六月 2025 20:04:18 +0800
Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory

---
 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