This commit is contained in:
liuye
2023-12-20 15:32:14 +08:00
parent 44afde131d
commit 47d149fc1d
4 changed files with 15 additions and 12 deletions

View File

@@ -291,7 +291,7 @@ export default {
.page { .page {
width: 100%; width: 100%;
min-height: 100%; min-height: 100%;
background-color: #fff; background-color: #F4F5FA;
position: relative; position: relative;
.header-content { .header-content {

View File

@@ -39,7 +39,7 @@
<div class="block"> <div class="block">
<img class="icon" :src="item.icon" alt=""> <img class="icon" :src="item.icon" alt="">
</div> </div>
<span class="desc" v-if="!item.share">{{ item.label }}</span> <span class="desc solid" v-if="!item.share">{{ item.label }}</span>
<button open-type="share" v-else> <button open-type="share" v-else>
<span>{{ item.label }}</span> <span>{{ item.label }}</span>
</button> </button>
@@ -366,7 +366,7 @@ export default {
&:last-child { &:last-child {
.desc { .desc {
border-bottom: none !important; // border-bottom: none !important;
} }
} }
@@ -392,7 +392,7 @@ export default {
color: #666666; color: #666666;
display: flex; display: flex;
align-items: center; align-items: center;
border-bottom: 1px solid #EEEEEE; box-sizing: border-box;
& > span { & > span {
width: 100%; width: 100%;
@@ -407,6 +407,11 @@ export default {
} }
} }
.solid {
border-bottom: 1px solid #EEE;
}
.no-border { .no-border {
border-bottom: none; border-bottom: none;
} }

View File

@@ -149,7 +149,7 @@ export default {
onShow() { onShow() {
this.$nextTick(() => { this.$nextTick(() => {
this.token && this.getUserInfo() this.token && this.getUserInfo('qujing')
}) })
if (this.user.homeArea) { if (this.user.homeArea) {
@@ -201,7 +201,7 @@ export default {
homeName: this.areaName homeName: this.areaName
}).then(res => { }).then(res => {
if (res.code === 0) { if (res.code === 0) {
this.getUserInfo() this.getUserInfo('qujing')
} }
}) })
}, },

View File

@@ -165,9 +165,8 @@ export default {
return false return false
} }
if (!this.user.residentId) { if (!this.user.areaId) {
this.$linkTo('/mods/AppAuth/AppAuth') this.$linkTo('/pages/AppMine/userInfo')
return false return false
} }
@@ -193,9 +192,8 @@ export default {
return false return false
} }
if (!this.user.residentId) { if (!this.user.areaId) {
this.$linkTo('/mods/AppAuth/AppAuth') this.$linkTo('/pages/AppMine/userInfo')
return false return false
} }