index.wxml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <view class="container">
  2. <auth bindlogin="onShow" />
  3. <lip-sync />
  4. <view class="page-title" style="top: {{statusBarHeight + 6}}px; height: {{navHeight - 12}}px">
  5. <navigator open-type="navigateBack" url="/pages/index/index"><image src="/static/images/return@2x.png"></image></navigator>
  6. <navigator open-type="navigateBack" url="/pages/index/index"><image src="/static/images/home@2x.png"></image></navigator>
  7. </view>
  8. <view class="userinfo">
  9. <image src="{{bgImg}}" class="user-bg"></image>
  10. </view>
  11. <view class="aaaaa">
  12. <view class="u-avatar" bindtap="tapByIdx" data-url="/pages/user/user">
  13. <image class="userinfo-avatar" src="{{ userInfo.avatarUrl || '/static/images/avatar_default.png' }}" background-size="cover"></image>
  14. <text class="userinfo-nickname">{{userInfo.nickName || '游客'}}</text>
  15. </view>
  16. <view class="order-list-v">
  17. <view class="title">个人信息</view>
  18. <view class="desc"><text>名称</text>{{userInfo.nickName}}</view>
  19. <view class="desc"><text>单位</text>{{userInfo.departmentName}}</view>
  20. </view>
  21. </view>
  22. <view class="logout" bindtap="logout">
  23. 退出
  24. </view>
  25. </view>