index.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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="{{filter.phoneFormat(userInfo.phone)||'---'}}" is-link>
  13. <i-icon type="mobilephone_fill" slot="icon" size="20" />
  14. </i-cell>
  15. <i-cell title="{{userInfo.nickname ||'---'}}" is-link>
  16. <i-icon type="mine_fill" slot="icon" size="20" />
  17. </i-cell>
  18. <i-cell title="{{filter.cardIdFormat(userInfo.cardId) ||'---'}}" is-link>
  19. <i-icon type="businesscard_fill" slot="icon" size="20" />
  20. </i-cell>
  21. </i-cell-group>
  22. </view>
  23. <view>
  24. <i-cell-group i-class="my-group-margin">
  25. <i-cell title="设置" >
  26. <i-icon type="setup_fill" slot="icon" size="20" />
  27. </i-cell>
  28. <i-cell title="反馈" >
  29. <i-icon type="praise_fill" slot="icon" size="20" />
  30. </i-cell>
  31. <i-cell title="关于" is-link url="/pages/dashboard/index">
  32. <i-icon type="prompt_fill" slot="icon" size="20" />
  33. </i-cell>
  34. </i-cell-group>
  35. </view>
  36. <view>
  37. <i-cell-group i-class="my-group-margin">
  38. <i-cell title="退出登入" bind:click="logOut">
  39. <i-icon type="flashlight_fill" slot="icon" size="20" />
  40. </i-cell>
  41. </i-cell-group>
  42. </view>
  43. <view class="copyright">厦门友志者人力资源有限公司</view>
  44. <i-spin size="large" fix wx:if="{{ spinShow }}"></i-spin>
  45. <i-message id="message" />