index.wxml 826 B

12345678910111213141516171819
  1. <nav-bar navbar-data='{{navbarData}}' needBack="{{false}}"></nav-bar>
  2. <view class="main" style="padding-top:{{height}}px;height:{{windowHeight-height}}px">
  3. <view class="one">
  4. <view class="left">
  5. <open-data type="userAvatarUrl" class="image"></open-data>
  6. </view>
  7. <view class="right">
  8. <view class="name">
  9. <open-data class="other" type="userNickName" lang="zh_CN"></open-data>
  10. <open-data class="other" type="userGender" lang="zh_CN"></open-data>
  11. </view>
  12. </view>
  13. </view>
  14. <view class="two">
  15. <van-cell title="我的信息" is-link bind:click="routeBtn" data-type="1" />
  16. <van-cell title="历史记录" is-link bind:click="routeBtn" data-type="2" />
  17. <van-cell wx:if="{{is_admin}}" title="核销餐券" is-link bind:click="routeBtn" data-type="3" />
  18. </view>
  19. </view>