index.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <view class="userinfo">
  2. <block>
  3. <image class="userinfo-avatar" src="{{info.imagePath}}"></image>
  4. <text class="userinfo-nickname">{{info.userName}}</text>
  5. </block>
  6. </view>
  7. <view>
  8. <i-cell-group i-class="my-group-margin">
  9. <i-cell title="个人资料" is-link url="/pages/my/info/index">
  10. <i-icon type="mine_fill" slot="icon" size="20" />
  11. </i-cell>
  12. <i-cell title="个人动态" is-link url="/pages/my/log/index">
  13. <i-icon type="collection_fill" slot="icon" size="20" />
  14. </i-cell>
  15. <i-cell title="消息" is-link url="/pages/my/message/list/index">
  16. <i-icon type="message_fill" slot="icon" size="20" />
  17. </i-cell>
  18. </i-cell-group>
  19. </view>
  20. <view>
  21. <i-cell-group i-class="my-group-margin">
  22. <i-cell title="设置" is-link url="/pages/dashboard/index">
  23. <i-icon type="setup_fill" slot="icon" size="20" />
  24. </i-cell>
  25. <i-cell title="反馈" is-link url="/pages/dashboard/index">
  26. <i-icon type="praise_fill" slot="icon" size="20" />
  27. </i-cell>
  28. <i-cell title="关于" is-link url="/pages/dashboard/index">
  29. <i-icon type="prompt_fill" slot="icon" size="20" />
  30. </i-cell>
  31. </i-cell-group>
  32. </view>
  33. <view>
  34. <i-cell-group i-class="my-group-margin">
  35. <i-cell title="退出账号" bind:click="logOut">
  36. <i-icon type="flashlight_fill" slot="icon" size="20" />
  37. </i-cell>
  38. </i-cell-group>
  39. </view>
  40. <view class="copyright"></view>
  41. <i-spin size="large" fix wx:if="{{ spinShow }}"></i-spin>
  42. <i-message id="message" />