information.wxml 853 B

123456789101112131415161718192021
  1. <!--dispatcher/pages/information/information.wxml-->
  2. <import src="../../../templates/loading/loading.wxml" />
  3. <view class='container'>
  4. <template is='loading' wx:if='{{!isLoaded}}'></template>
  5. <view class='wrapper' wx:else>
  6. <view class='list'>
  7. <view class='li' bindtap='uploadImgCtl'>
  8. <view class='li-label'>头像</view>
  9. <image class='li-image' src='{{userInfo.avatarUrl? userInfo.avatarUrl : "../../../assets/default_headicon.png"}}'></image>
  10. </view>
  11. <view class='li'>
  12. <view class='li-label'>姓名</view>
  13. <view class='li-text'>{{userInfo.nickName}}</view>
  14. </view>
  15. <view class='li'>
  16. <view class='li-label'>性别</view>
  17. <view class='li-text'>{{userInfo.gender == 1 ? '男' : userInfo.gender == 2 ? '女' : '' }}</view>
  18. </view>
  19. </view>
  20. </view>
  21. </view>