123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <view class="mine" style="height:100%;">
- <view class="user">
- <view class="userPhoto" wx:if="{{user!=''}}">
- <image src="{{user.avatar ? user.avatar : user.avatar_url}}"></image>
- <view class="flexC">
- <view>{{user.nickname}}</view>
- </view>
- </view>
- <button class="userPhoto" open-type="getUserInfo" bindgetuserinfo="onGotUserInfo" wx:else>
- <image src="/img/user1.png"></image>
- <view class="flexC">
- <view>微信一键授权</view>
- </view>
- </button>
- </view>
- <view class="list" style="margin-top:{{show?'0rpx':'60rpx'}}">
- <view class="flexB special" bindtap="tap" data-url="wallet">
- <view style="display:flex;align-items:center;">
- <image src="/img/qianbao.png"></image>
- <text class="name">我的钱包</text>
- </view>
- <view>
- <text class="iconfont iconarrow-right"></text>
- </view>
- </view>
- <view class="flexB special" bindtap="tap" data-url="record">
- <view style="display:flex;align-items:center;">
- <image src="/img/jilu.png"></image>
- <text class="name">预约记录</text>
- </view>
- <view>
- <text class="iconfont iconarrow-right"></text>
- </view>
- </view>
- <view class="flexB special" bindtap="tap" data-url="discount">
- <view style="display:flex;align-items:center;">
- <image src="/img/youhui.png"></image>
- <text class="name">优惠券</text>
- </view>
- <view>
- <text class="iconfont iconarrow-right"></text>
- </view>
- </view>
- <view class="flexB special" bindtap="tap" data-url="my_discount">
- <view style="display:flex;align-items:center;">
- <image src="/img/my_youhui.png"></image>
- <text class="name">我的优惠券</text>
- </view>
- <view>
- <text class="iconfont iconarrow-right"></text>
- </view>
- </view>
- <view class="flexB special" bindtap="tap" data-url="admin" wx:if="{{identity=='A'}}">
- <view style="display:flex;align-items:center;">
- <image src="/img/guanli.png"></image>
- <text class="name">管理员</text>
- </view>
- <view>
- <text class="iconfont iconarrow-right"></text>
- </view>
- </view>
- </view>
- </view>
|