zhaowei
3 天以前 19aff1ac87030b21d2b01cdca5d5604c840ba7c0
src/views/system/modules/UserRecycleBinModal.vue
@@ -145,7 +145,11 @@
              if(res.success){
                this.handleOk()
                this.handleClearSelection()
                this.$message.success(`还原 ${userIds.length} 个用户成功!`)
                // this.$message.success(`还原 ${userIds.length} 个用户成功!`)
                this.$notification.success({
                  message:'消息',
                  description:`还原 ${userIds.length} 个用户成功!`
                });
              }
            })
          }
@@ -166,9 +170,15 @@
              if (res.success) {
                this.loadData()
                this.handleClearSelection()
                this.$message.success(`彻底删除 ${userIds.length} 个用户成功!`)
                that.$notification.success({
                  message:'消息',
                  description:`彻底删除 ${userIds.length} 个用户成功!`
                });
              } else {
                that.$message.warning(res.message);
                that.$notification.warning({
                  message:'消息',
                  description:res.message
                });
              }
            });
          },