|
@@ -59,31 +59,31 @@
|
|
|
</view>
|
|
|
<view class="info">
|
|
|
<!-- #ifdef MP -->
|
|
|
- <view class="name" v-if="!userInfo.uid" @click="openAuto"
|
|
|
+ <view class="name" v-if="!userInfo.id" @click="openAuto"
|
|
|
style="height: 100%; display: flex; align-items: center;">
|
|
|
{{$t('请点击授权')}}
|
|
|
</view>
|
|
|
<!-- #endif -->
|
|
|
<!-- #ifdef H5 -->
|
|
|
- <view class="name" v-if="!userInfo.uid && isWeixin" @click="openAuto"
|
|
|
+ <view class="name" v-if="!userInfo.id && isWeixin" @click="openAuto"
|
|
|
style="height: 100%; display: flex; align-items: center;">
|
|
|
{{$t('请点击授权')}}
|
|
|
</view>
|
|
|
<!-- #endif -->
|
|
|
- <view class="name" v-if="userInfo.uid">
|
|
|
- {{userInfo.nickname}}
|
|
|
+ <view class="name" v-if="userInfo.id">
|
|
|
+ {{userInfo.realName}}
|
|
|
<image class="live" :src="userInfo.vip_icon" v-if="userInfo.vip_icon"></image>
|
|
|
<view class="vip" v-if="userInfo.is_money_level> 0 && userInfo.svip_open">
|
|
|
<image src="/static/images/svip.png"></image>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="num" v-if="userInfo.phone" @click="goEdit()">
|
|
|
- <view class="num-txt">ID:{{userInfo.uid}}</view>
|
|
|
+ <view class="num" v-if="userInfo.username" @click="goEdit()">
|
|
|
+ <view class="num-txt">ID:{{userInfo.id}}</view>
|
|
|
<!-- <view class="icon">
|
|
|
<image src="/static/images/edit.png" mode=""></image>
|
|
|
</view> -->
|
|
|
</view>
|
|
|
- <view class="phone" v-if="!userInfo.phone && isLogin" @tap="bindPhone">
|
|
|
+ <view class="phone" v-if="!userInfo.username && isLogin" @tap="bindPhone">
|
|
|
{{$t('绑定手机号')}}</view>
|
|
|
</view>
|
|
|
<view class="message">
|
|
@@ -105,9 +105,9 @@
|
|
|
|
|
|
</view>
|
|
|
<view class="num-wrapper">
|
|
|
- <view class="num-item" v-if="userInfo.balance_func_status"
|
|
|
+ <view class="num-item" v-if="userInfo.nowMoney"
|
|
|
@click="goMenuPage('/pages/users/user_money/index')">
|
|
|
- <text class="num">{{userInfo.now_money || 0}}</text>
|
|
|
+ <text class="num">{{userInfo.nowMoney || 0}}</text>
|
|
|
<view class="txt">{{$t('余额')}}</view>
|
|
|
</view>
|
|
|
<view class="num-item" v-else
|
|
@@ -116,11 +116,11 @@
|
|
|
<view class="txt">{{$t('收藏')}}</view>
|
|
|
</view>
|
|
|
<view class="num-item" @click="goMenuPage('/pages/users/user_coupon/index')">
|
|
|
- <text class="num">{{userInfo.couponCount || 0}}</text>
|
|
|
+ <text class="num">{{userInfo.ticket || 0}}</text>
|
|
|
<view class="txt">{{$t('优惠券')}}</view>
|
|
|
</view>
|
|
|
<view class="num-item" @click="goMenuPage('/pages/users/user_integral/index')">
|
|
|
- <text class="num">{{userInfo.integral || 0}}</text>
|
|
|
+ <text class="num">{{userInfo.redMoney || 0}}</text>
|
|
|
<view class="txt">{{$t('积分')}}</view>
|
|
|
</view>
|
|
|
</view>
|