Browse Source

修改员工管理文字显示

lex-xin 4 years ago
parent
commit
5f9371936c

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


+ 1 - 1
dist/static/css/chunk-3acc9328.7232e48d.css → dist/static/css/chunk-0ac06704.451cbf1a.css

@@ -1 +1 @@
-.pagination-container[data-v-31cb099a]{background:#fff;padding:32px 16px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pagination-container.hidden[data-v-31cb099a]{display:none}[data-v-302f4fc3] .el-button--primary,[data-v-302f4fc3] .el-button--primary:active,[data-v-302f4fc3] .el-button--primary:focus,[data-v-302f4fc3] .el-button--primary:hover{background:#14928a;border-color:#14928a;color:#fff}[data-v-302f4fc3] .el-dialog__body{padding:0 20px}[data-v-302f4fc3] .el-date-editor.el-input,[data-v-302f4fc3] .el-select{width:100%!important}
+.pagination-container[data-v-31cb099a]{background:#fff;padding:32px 16px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pagination-container.hidden[data-v-31cb099a]{display:none}[data-v-1f2783a5] .el-button--primary,[data-v-1f2783a5] .el-button--primary:active,[data-v-1f2783a5] .el-button--primary:focus,[data-v-1f2783a5] .el-button--primary:hover{background:#14928a;border-color:#14928a;color:#fff}[data-v-1f2783a5] .el-dialog__body{padding:0 20px}[data-v-1f2783a5] .el-date-editor.el-input,[data-v-1f2783a5] .el-select{width:100%!important}

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.57ab84c4.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-0ac06704.d0a79d5c.js


+ 3 - 2
src/views/categroyManager/insideSetting/staffManager.vue

@@ -529,7 +529,8 @@ export default {
       return status
       return status
     },
     },
     onStaffOperation (type, data) {
     onStaffOperation (type, data) {
-      this.$confirm("您确定修改员工状态", "提示", {
+      const tempStatus = type == 'RESET_PASSWORD' ? true : false
+      this.$confirm(`您确定${tempStatus ? '重置密码' : '修改员工状态'}?`, "提示", {
         confirmButtonText: "确定",
         confirmButtonText: "确定",
         cancelButtonText: "取消",
         cancelButtonText: "取消",
         type: "warning"
         type: "warning"
@@ -548,7 +549,7 @@ export default {
           operate: type
           operate: type
         }).then(res => {
         }).then(res => {
           if (res.code == 200) {
           if (res.code == 200) {
-            this.$message.success('更改成功')
+            this.$message.success(tempStatus ? '重置密码成功' : '更改成功')
             this.roleStatus = false
             this.roleStatus = false
             this.getList()
             this.getList()
           } else {
           } else {

Some files were not shown because too many files changed in this diff