mine.wxml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!--pages/mine/mine.wxml-->
  2. <!-- 我的视图 -->
  3. <!-- 导航栏 -->
  4. <nav-bar title="我的" left="{{false}}"></nav-bar>
  5. <!-- 我的顶部视图 -->
  6. <view class="minetop">
  7. <van-image src="{{avatarUrl}}" round width="50" height="50"></van-image>
  8. <view class="userinfo">
  9. <view class="userinfo-vip">
  10. <text>VIP</text>
  11. <text>永久</text>
  12. </view>
  13. <view class="userinfo-account">
  14. <text>elena</text>
  15. <text>21000001</text>
  16. </view>
  17. <text>深圳水贝珠宝有限公司</text>
  18. </view>
  19. </view>
  20. <!-- 功能菜单项 -->
  21. <van-grid column-num="5" wx:if="{{menulists.count != 0}}">
  22. <van-grid-item wx:for="{{menulists}}" wx:key="id" wx:for-index="idx" wx:for-item="itm" id="{{itm.id}}" icon="{{itm.img}}" icon-color="red" dot link-type="navigateTo" url="{{itm.path}}">
  23. <text slot="text" style="font-size: 13px;">{{itm.title}}</text>
  24. </van-grid-item>
  25. </van-grid>
  26. <!-- 列表菜单项 -->
  27. <van-cell-group>
  28. <van-cell clickable title-class="cell-title" center is-link border wx:for="{{tablelists}}" use-label-slot clickable wx:key="id" wx:for-index="idx" wx:for-item="itm" id="{{itm.id}}" title="{{itm.title}}" link-type="navigateTo" url="{{itm.path}}">
  29. </van-cell>
  30. </van-cell-group>
  31. <!-- 登出按钮 -->
  32. <button class="loginOut" bindtap="onLoginOut">系统登出</button>
  33. <!-- 对话弹框 -->
  34. <van-dialog id="van-dialog" />
  35. <!-- toast -->
  36. <van-toast id="van-toast" />