This commit is contained in:
mac·ufutx 2026-04-23 16:38:20 +08:00
parent 1c97176f76
commit b9c8e026ca
2 changed files with 11 additions and 7 deletions

View File

@ -35,7 +35,7 @@ wepy.app({
} }
}, },
globalData: { globalData: {
versions: 'v5.6.4', // 版本号 versions: 'v5.6.5', // 版本号
navBarHeight: 0, // 导航栏高度 navBarHeight: 0, // 导航栏高度
navRight: 0, // 胶囊距右方间距(方保持左、右间距一致) navRight: 0, // 胶囊距右方间距(方保持左、右间距一致)
navTop: 0, // 胶囊距顶部间距 navTop: 0, // 胶囊距顶部间距

View File

@ -54,7 +54,7 @@
<view class="list_box"> <view class="list_box">
<block v-for="(item,index) in list" :key="index"> <block v-for="(item,index) in list" :key="index">
<block v-if="item.title == '会员中心'"> <block v-if="item.title == '会员中心'">
<block v-if="system != 'iOS'"> <!-- <block v-if="system != 'iOS'">-->
<view class="_list f-fbc" @tap="goto(item.path,item.title)"> <view class="_list f-fbc" @tap="goto(item.path,item.title)">
<view class="f-fc"> <view class="f-fc">
<image src="{{item.icon}}" mode="widthFix" class="img flo_l"></image> <image src="{{item.icon}}" mode="widthFix" class="img flo_l"></image>
@ -69,7 +69,7 @@
class="icon flo_r"></image> class="icon flo_r"></image>
</view> </view>
</view> </view>
</block> <!-- </block>-->
</block> </block>
<block v-else> <block v-else>
<view class="_list f-fbc" @tap="goto(item.path,item.title)"> <view class="_list f-fbc" @tap="goto(item.path,item.title)">
@ -633,17 +633,21 @@ wepy.page({
console.log(self.posterConfig1, '7777') console.log(self.posterConfig1, '7777')
this.init = true this.init = true
this.user = data.user this.user = data.user
this.user.rank_id = data.rank_profile.rank_id this.user.rank_id = data?.rank_profile?.rank_id
this.user.deadline = (data.rank_profile?.deadline).substring(0, 16) // this.user.deadline = (data?.rank_profile?.deadline).substring(0, 16) || ''
this.user.deadline = data?.rank_profile?.deadline
? String(data.rank_profile.deadline).substring(0, 16)
: '';
// this.user.card_num = data.approve_profile.card_num // this.user.card_num = data.approve_profile.card_num
this.user.is_approved = data.approve_profile.is_approved this.user.is_approved = data.approve_profile.is_approved || 0
this.user.is_real_approved = data.approve_profile.is_real_approved this.user.is_real_approved = data.approve_profile.is_real_approved || 0
this.user.is_photo_audited = data.is_photo_audited this.user.is_photo_audited = data.is_photo_audited
// this.user.name = data.approve_profile.name // this.user.name = data.approve_profile.name
this.listCount = { this.listCount = {
friend_count: data.friend_count, friend_count: data.friend_count,
fans_count: data.fans_count, fans_count: data.fans_count,
follow_count: data.follow_count, follow_count: data.follow_count,
preview_count: data.preview_count preview_count: data.preview_count
} }
console.log(this.user, 'user===') console.log(this.user, 'user===')