me.wxml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!--dispatcher/pages/me/me.wxml-->
  2. <import src="../../../templates/footer/footer.wxml" />
  3. <view class='container'>
  4. <view class='wrapper pb'>
  5. <view class='header' data-url='dispatcher/pages/information/information' data-zindex='3' bindtap='navigateTo' >
  6. <view class='header-flex'>
  7. <view class='header-images'>
  8. <image class='header-image' src='{{options.userInfo.avatarUrl ?options.userInfo.avatarUrl : "../../../assets/default_headicon.png"}}'></image>
  9. </view>
  10. <view class='header-col'>
  11. <view class='header-row'>
  12. <view class='header-text-black' wx:if='{{options.userInfo.nickName}}'>{{options.userInfo.nickName}}</view>
  13. </view>
  14. </view>
  15. </view>
  16. <image class='header-arrow' src='../../../assets/arrow_gray.png'></image>
  17. </view>
  18. <view class='section'>
  19. <view class='section-list'>
  20. <view class='section-li' wx:for='{{routerTwo}}' wx:key='index' data-index='{{index}}' bindtap='selectRouterCtl'>
  21. <view>
  22. <image class='section-icon' src='{{item.icon}}'></image>
  23. <text class='section-text'>{{item.text}}</text>
  24. </view>
  25. <image class='section-arrow' src='../../../assets/arrow_gray.png'></image>
  26. </view>
  27. </view>
  28. <view class='section-list'>
  29. <view class='section-li' wx:for='{{routerThree}}' wx:key='index' data-url='{{item.url}}' data-paras='{{({...item.paras})}}' data-zindex='{{item.zindex}}' bindtap='navigateTo'>
  30. <view>
  31. <image class='section-icon' src='{{item.icon}}'></image>
  32. <text class='section-text'>{{item.text}}</text>
  33. </view>
  34. <image class='section-arrow' src='../../../assets/arrow_gray.png'></image>
  35. </view>
  36. </view>
  37. <view class='section-list'>
  38. <view class='section-li' wx:for='{{routerFour}}' wx:key='index' bindtap='codeScanCtl' >
  39. <view>
  40. <image class='section-icon' src='{{item.icon}}'></image>
  41. <text class='section-text'>{{item.text}}</text>
  42. </view>
  43. <image class='section-arrow' src='../../../assets/arrow_gray.png'></image>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. <template is='footer' data='{{...footerData}}'></template>
  49. </view>