mine.wxml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <view class="user">
  2. <view class="info">
  3. <view class="head">
  4. <view class="img"><open-data type="userAvatarUrl"></open-data></view>
  5. <view class="name"><open-data type="userNickName"></open-data></view>
  6. </view>
  7. <view class="list">
  8. <navigator url="join/join" extra-data="">
  9. <text>{{ joinLength }}</text>
  10. <view>我参与的</view>
  11. </navigator>
  12. <navigator url="prize/prize">
  13. <text>{{ winLength }}</text>
  14. <view>中奖记录</view>
  15. </navigator>
  16. </view>
  17. </view>
  18. <view class="tool">
  19. <!-- <i-cell title="消息通知" is-link url="msg/msg" i-class="tool-item">
  20. <image src="/assets/images/icon-notice.png" class="cell-icon" slot="icon"></image>
  21. </i-cell> -->
  22. <i-cell title="常见问题" is-link url="question/question" i-class="tool-item">
  23. <image src="/assets/images/icon-question.png" class="cell-icon" slot="icon"></image>
  24. </i-cell>
  25. <button open-type="feedback" class="btn-feedback">
  26. <i-cell title="意见反馈" is-link i-class="tool-item">
  27. <image src="/assets/images/icon-feedback.png" class="cell-icon" slot="icon"></image>
  28. </i-cell>
  29. </button>
  30. </view>
  31. </view>