From d6fb18b49cd61427a343fbe7a2a4f94e4b597bdc Mon Sep 17 00:00:00 2001
From: wl <173@qq.com>
Date: 星期四, 29 十二月 2022 14:00:41 +0800
Subject: [PATCH] fix:店铺状态
---
src/views/systemSetting/baseSetting/department/createUser/index.vue | 38 +++++++++++++++++++-------------------
1 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/src/views/systemSetting/baseSetting/department/createUser/index.vue b/src/views/systemSetting/baseSetting/department/createUser/index.vue
index 3efa87b..9756121 100644
--- a/src/views/systemSetting/baseSetting/department/createUser/index.vue
+++ b/src/views/systemSetting/baseSetting/department/createUser/index.vue
@@ -88,7 +88,7 @@
:label="user.id"
:key="user.id"
>
- {{ user.username}}
+ {{ user.username }}
</el-checkbox>
</el-checkbox-group>
</div>
@@ -267,7 +267,7 @@
}
});
});
- this.checkedList[0].leader = true;
+ if (this.checkedList.length > 0) this.checkedList[0].leader = true;
this.openUser = false;
},
handleClose() {
@@ -318,12 +318,12 @@
<style lang="scss" scoped>
.createUser {
border-radius: 1px;
- background-color: #09152f;
+ // background-color: #09152f;
main {
text-align: left;
padding: 0 55px;
- background-color: #09152f;
+ // background-color: #09152f;
padding-bottom: 50px;
.mainContent {
@@ -331,19 +331,19 @@
justify-content: center;
padding-top: 50px;
- &::v-deep .el-form-item__label {
- color: #4b9bb7;
- }
+ // &::v-deep .el-form-item__label {
+ // color: #4b9bb7;
+ // }
- &::v-deep .el-input__inner {
- background-color: #09152f;
- border: 1px solid #17324c;
- }
+ // &::v-deep .el-input__inner {
+ // background-color: #09152f;
+ // border: 1px solid #17324c;
+ // }
- &::v-deep .el-textarea__inner {
- background-color: #09152f;
- border: 1px solid #17324c;
- }
+ // &::v-deep .el-textarea__inner {
+ // background-color: #09152f;
+ // border: 1px solid #17324c;
+ // }
.addPerson {
display: flex;
@@ -405,7 +405,7 @@
min-height: 240px;
max-height: 260px;
overflow: hidden;
- background-color: #09152f;
+ // background-color: #09152f;
position: relative;
max-width: 220px;
@@ -413,7 +413,7 @@
overflow: scroll;
height: 180px;
position: relative;
- color: #4b9bb7;
+ // color: #4b9bb7;
.el-checkbox-group {
display: flex;
@@ -428,7 +428,7 @@
.myclear {
width: 100%;
line-height: 20px;
- color: #4b9bb7;
+ // color: #4b9bb7;
display: flex;
justify-content: space-between;
}
@@ -439,7 +439,7 @@
right: 20px;
width: 20px;
height: 180px;
- background-color: #09152f;
+ // background-color: #09152f;
}
.item {
--
Gitblit v1.8.0