user.wxml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <view class="bg" wx:if='{{userinfo.id}}'>
  2. <view class="info">
  3. <view class='avatar'>
  4. <image style="width:100%;height:100%;" src="{{userinfo.avatar}}"></image>
  5. </view>
  6. <view class="name">
  7. <view>{{userinfo.username}}</view>
  8. <text wx:if='{{userinfo.id}}'>代码:{{usercode}}</text>
  9. </view>
  10. </view>
  11. <view style="padding:0 30rpx;background:#fff;">
  12. <navigator hover-class="none" class="item" url="../style/style">
  13. 我的风格 <image mode="widthFix" src="../../images/right_icon.png"></image>
  14. </navigator>
  15. <navigator hover-class="none" class="item" url="../follow/follow">
  16. 我的关注 <image mode="widthFix" src="../../images/right_icon.png"></image>
  17. </navigator>
  18. <navigator hover-class="none" class="item" url="../mymatch/mymatch">
  19. 我的比赛 <image mode="widthFix" src="../../images/right_icon.png"></image>
  20. </navigator>
  21. <navigator hover-class="none" style="border:none" class="item" url="../aboutus/aboutus">
  22. 关于我们 <image mode="widthFix" src="../../images/right_icon.png"></image>
  23. </navigator>
  24. </view>
  25. <navigator hover-class="none" class="item logout" bindtap="logout">
  26. 退出登录 <image mode="widthFix" src="../../images/right_icon.png"></image>
  27. </navigator>
  28. </view>
  29. <!-- 未登录 -->
  30. <view class="no_login" wx:else>
  31. <view class="title">欢迎来到湖南顽主杯实盘大赛</view>
  32. <view class='avatar'>
  33. <open-data type="userAvatarUrl">
  34. </open-data>
  35. </view>
  36. <view class="login">
  37. <input bindinput='inputchange' placeholder="请输入您的代码" value="{{usercode}}"></input>
  38. <button bindtap="login">登录</button>
  39. </view>
  40. </view>