index.wxml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <wxs module="filter" src="../../../wxs/exam-fun.wxs"></wxs>
  2. <view class='headImg'>
  3. <button wx:if="{{!userInfo.token}}" type="primary" bindtap="gotoIdentify" class="tc">
  4. 绑定账号
  5. </button>
  6. <view class="headImg-avatar" wx:else>
  7. <image src="{{userInfo.headImg}}" mode="aspectFill"></image>
  8. </view>
  9. </view>
  10. <view>
  11. <i-cell-group i-class="my-group-margin">
  12. <i-cell title="高频题库" is-link url="/pages/train/limit/index">
  13. <i-icon type="like" slot="icon" size="20" />
  14. </i-cell>
  15. <i-cell title="{{filter.phoneFormat(userInfo.phone)||'---'}}" >
  16. <i-icon type="mobilephone" slot="icon" size="20" />
  17. </i-cell>
  18. <i-cell title="{{userInfo.nickname ||'---'}}" >
  19. <i-icon type="mine" slot="icon" size="20" />
  20. </i-cell>
  21. <i-cell title="{{filter.cardIdFormat(userInfo.cardId) ||'---'}}" >
  22. <i-icon type="businesscard" slot="icon" size="20" />
  23. </i-cell>
  24. </i-cell-group>
  25. </view>
  26. <!--
  27. <view>
  28. <i-cell-group i-class="my-group-margin">
  29. <i-cell title="设置" >
  30. <i-icon type="setup_fill" slot="icon" size="20" />
  31. </i-cell>
  32. <i-cell title="反馈" >
  33. <i-icon type="praise_fill" slot="icon" size="20" />
  34. </i-cell>
  35. <i-cell title="关于" >
  36. <i-icon type="prompt_fill" slot="icon" size="20" />
  37. </i-cell>
  38. </i-cell-group>
  39. </view> -->
  40. <view>
  41. <i-cell-group i-class="my-group-margin">
  42. <i-cell title="退出登入" bind:click="logOut">
  43. <i-icon type="flashlight" slot="icon" size="20" />
  44. </i-cell>
  45. </i-cell-group>
  46. </view>
  47. <view class="copyright">宁德市建筑工程技术服务行业协会</view>
  48. <i-spin size="large" fix wx:if="{{ spinShow }}"></i-spin>
  49. <i-message id="message" />