BUG 27406

This commit is contained in:
aixianling
2022-02-15 10:24:02 +08:00
parent 11e61248fe
commit fef00f6423

View File

@@ -19,7 +19,7 @@
<img src="./img/gird--select-icon.png" alt="" class="avatras"/> <img src="./img/gird--select-icon.png" alt="" class="avatras"/>
</div> </div>
<div class="rightes"> <div class="rightes">
<div class="applicationNames">{{ item.girdName }}</div> <div class="applicationNames fill">{{ item.girdName }}</div>
<u-icon v-if="item.girdLevel != 2" name="arrow-right" color="#ddd"/> <u-icon v-if="item.girdLevel != 2" name="arrow-right" color="#ddd"/>
</div> </div>
</div> </div>
@@ -65,7 +65,7 @@ export default {
if (params.girdLevel) { if (params.girdLevel) {
this.girdLevel = params.girdLevel this.girdLevel = params.girdLevel
} }
if(params.isMyGird) { if (params.isMyGird) {
this.isMyGird = params.isMyGird this.isMyGird = params.isMyGird
} }
this.isGirdUser() this.isGirdUser()
@@ -76,9 +76,9 @@ export default {
if (res?.data) { if (res?.data) {
if (res.data.checkType) { if (res.data.checkType) {
this.userGird = res.data this.userGird = res.data
if(this.isMyGird) { if (this.isMyGird) {
this.getMyGird() this.getMyGird()
}else { } else {
this.getTree() this.getTree()
} }
@@ -248,9 +248,9 @@ export default {
margin-left: 32px; margin-left: 32px;
border-bottom: 1px solid #e4e5e6; border-bottom: 1px solid #e4e5e6;
padding-right: 16px; padding-right: 16px;
box-sizing: border-box;
.applicationNames { .applicationNames {
width: calc(100% - 56px);
font-size: 36px; font-size: 36px;
font-weight: 500; font-weight: 500;
color: #333333; color: #333333;
@@ -261,55 +261,6 @@ export default {
} }
} }
} }
.showUsers {
.cards {
display: flex;
align-items: center;
height: 120px;
line-height: 120px;
// background: pink;
padding: 0 0 0 32px;
.imges {
display: flex;
align-items: center;
width: 200px;
.imgselect {
width: 48px;
height: 48px;
}
.avatras {
width: 74px;
height: 74px;
border-radius: 8px;
margin-left: 36px;
}
}
.rights {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-left: 32px;
border-bottom: 1px solid #e4e5e6;
padding-right: 40px;
.applicationNames {
font-size: 36px;
font-weight: 500;
color: #333333;
}
.idNumbers {
color: #666;
}
}
}
}
} }
.subBtn { .subBtn {