From 485aef90f3240c06747d1e7bf6a0edfe4c2dbe0c Mon Sep 17 00:00:00 2001
From: odc.xiaohui <xiaohui@Q1>
Date: 星期一, 13 二月 2023 16:31:10 +0800
Subject: [PATCH] 2023/2/13 肖辉 侧边栏处理
---
src/views/systemSetting/baseSetting/department/updateUser/index.vue | 34 ++++++++++++++++++++++++++--------
1 files changed, 26 insertions(+), 8 deletions(-)
diff --git a/src/views/systemSetting/baseSetting/department/updateUser/index.vue b/src/views/systemSetting/baseSetting/department/updateUser/index.vue
index 6c14173..82bd250 100644
--- a/src/views/systemSetting/baseSetting/department/updateUser/index.vue
+++ b/src/views/systemSetting/baseSetting/department/updateUser/index.vue
@@ -39,6 +39,12 @@
<li class="li-btn" v-if="updateFlag">
<i class="el-icon-plus" @click="openUser = true"></i>
</li>
+ <li class="li-btn" v-if="updateFlag">
+ <el-tooltip class="item" effect="light" content="娓呴櫎閫変腑浜哄憳" placement="top" :enterable="false">
+ <i class="el-icon-minus" @click="clrarUser"></i>
+ </el-tooltip>
+
+ </li>
</ul>
<div class="card" v-if="openUser">
<el-card class="box-card">
@@ -149,12 +155,12 @@
checkedList.forEach((item) => {
arr.push({ leader: item.leader, userId: item.id ? item.id : item.userId });
});
- if (arr.length === 0) {
- this.$message({
- type: 'warning',
- message: '璇烽�夋嫨閮ㄩ棬浜哄憳',
- })
- } else {
+ // if (arr.length === 0) {
+ // this.$message({
+ // type: 'warning',
+ // message: '璇烽�夋嫨閮ㄩ棬浜哄憳',
+ // })
+ // } else {
this.$axios
.post("sccg/depart/update", {
id: user.id,
@@ -162,6 +168,7 @@
parentId: user.parentId === '鏆傛棤涓婄骇閮ㄩ棬' ? 0 : user.parentId,
departDes: user.departDes,
departManagerList: arr,
+ departType: user.departType
})
.then((res) => {
this.$message({
@@ -171,7 +178,7 @@
this.$emit("changeDialog", { flag: false });
this.getDepartList();
});
- }
+ // }
} else {
return false;
}
@@ -200,6 +207,11 @@
}
});
},
+ // 娓呴櫎閫変腑鐢ㄦ埛
+ clrarUser(){
+ this.checkedList=[]
+ },
+
addUser() {
this.checkedList = [];
this.userList.forEach((item) => {
@@ -315,6 +327,12 @@
width: 36px;
height: 36px;
border-radius: 50%;
+ .el-icon-plus{
+ cursor: pointer;
+ }
+ .el-icon-minus{
+ cursor: pointer;
+ }
}
.card {
@@ -376,4 +394,4 @@
.el-input {
width: 280px !important;
}
-</style>
\ No newline at end of file
+</style>
--
Gitblit v1.8.0