index.wxml 583 B

1234567891011121314151617
  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. <image src="{{userInfo.avatarUrl}}"></image>
  6. </view>
  7. <view class="right">
  8. <view class="name">
  9. {{userInfo.nickName}}
  10. </view>
  11. </view>
  12. </view>
  13. <view class="two">
  14. <van-cell title="历史记录" is-link bind:click="routeBtn" data-type="1" />
  15. <van-cell title="退出登录" is-link bind:click="routeBtn" data-type="2" />
  16. </view>
  17. </view>