12345678910111213141516171819 |
- <nav-bar navbar-data='{{navbarData}}' needBack="{{false}}"></nav-bar>
- <view class="main" style="padding-top:{{height}}px;height:{{windowHeight-height}}px">
- <view class="one">
- <view class="left">
- <open-data type="userAvatarUrl" class="image"></open-data>
- </view>
- <view class="right">
- <view class="name">
- <open-data class="other" type="userNickName" lang="zh_CN"></open-data>
- <open-data class="other" type="userGender" lang="zh_CN"></open-data>
- </view>
- </view>
- </view>
- <view class="two">
- <van-cell title="我的信息" is-link bind:click="routeBtn" data-type="1" />
- <van-cell title="历史记录" is-link bind:click="routeBtn" data-type="2" />
- <van-cell wx:if="{{is_admin}}" title="核销餐券" is-link bind:click="routeBtn" data-type="3" />
- </view>
- </view>
|