1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!-- <wxs src="../../pages/commonWxs/format.wxs" module="format" /> -->
- <template name="my">
- <view class='mine-container'>
- <view class='follow-details'>
- <view class='follow-info'>
- <view class="info-placerholder"></view>
- <view class='set-msg' wx:if="{{myData.user.user.wechatName || myData.user.wechatName }}">
- <view class='avatar-box'>
- <image class='avatar-image' src='{{ myData.user.user.avatar || myData.user.avatar }}'></image>
- <!-- <view class='occupation-title' wx:if="{{myData.user.user.profession}}">{{ myData.user.user.profession }}</view> -->
- </view>
- <view class='avatar-msg' bindtap="toMyEdit">
- <view class='avatar-nickname'>
- 微信昵称:{{ myData.user.user.wechatName || myData.user.wechatName }}
- </view>
- <view class='avatar-nickname'>
- 宝贝昵称:{{ myData.user.user.nickName || myData.user.nickName }}
- </view>
- <image class="edit-img" src="../../static/image/edit_new.png" />
- <view class='mine-category'>
- <view class='amount-text'>{{ myData.user.playAmount || 0 }} 播放</view>
- <!-- <view class='amount-text'>{{ myData.user.likeAmount || 0 }} 赞</view> -->
- <view class='amount-text'>{{ myData.user.fansAmount || 0 }} 粉丝</view>
- </view>
- </view>
- </view>
- </view>
- <!-- ios只显示红花 -->
- <!-- <view class="only-flower" wx:if="{{myData.isIOS}}" bindtap="goToFlower">
- <view class="grey-point"></view>
- <view class="flower-amount">
- <image class="" src='../../static/image/flower_small.png' />
- <view>小红花:{{myData.user.integralAmount || 0 }}</view>
- </view>
- <view class="flower-tips" wx:if="{{myData.user.unfinishedAmount > 0}}">
- <text class="flower-last">{{myData.user.unfinishedAmount }}</text>
- 个任务福利还没有完成
- </view>
- <view class="flower-tips" wx:if="{{myData.user.unfinishedAmount <= 0}}">今天任务全部完成,真棒</view>
- </view> -->
- <!-- android 显示两个 -->
- <view class="wallet-section" >
- <view class="flower-box" bindtap="goToFlower">
- <view class="grey-point"></view>
- <image class="flower-icon" src='../../static/image/flower_small.png' />
- <view class="flower-text">
- <view>小红花:{{myData.user.integralAmount || 0 }}</view>
- <view class="flower-tips-text">
- <text class="flower-last">{{myData.user.unfinishedAmount }}</text>
- 个任务福利还没有完成
- </view>
- </view>
- </view>
- </view>
- <view class="btn-section">
- <view class="btn" bindtap='toMyConcern'>
- <image src="../../static/image/concern.png" />
- <view class="btn-title">我的关注</view>
- </view>
- <view class="btn" bindtap='toMyKeep' data-title='{{ myData.keep }}'>
- <image src="../../static/image/collect.png" />
- <view class="btn-title">我的收藏</view>
- </view>
- <view class="btn">
- <image src="../../static/image/message.png" bindtap="goToMessage" />
- <view class="btn-title">消息/客服</view>
- </view>
- </view>
- </view>
- </view>
- </template>
|