user.wxml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <view class="bg">
  2. <image style="width:100%;height:15vh;" mode="scaleToFill" src="../images/my_bg.png"></image>
  3. <view class="info">
  4. <view class='avatar'>
  5. <open-data wx:if='{{!userinfo.avatar}}' type="userAvatarUrl">
  6. </open-data>
  7. <image style="width:100%;height:100%;" wx:else src="{{userinfo.avatar}}"></image>
  8. </view>
  9. <view class="name">
  10. <open-data wx:if='{{!userinfo.username}}' type="userNickName">
  11. </open-data>
  12. <view wx:else>{{userinfo.username}}</view>
  13. <view wx:if='{{userInfo.id}}'>代码:{{usercode}}</view>
  14. <view wx:else style="margin-top:20rpx;">欢迎来到湖南顽主杯实盘大赛</view>
  15. </view>
  16. </view>
  17. <navigator wx:if='{{userInfo.id}}' class="item" url="../game/game">
  18. 参赛数据 <image mode="widthFix" src="../images/right_icon.png"></image>
  19. </navigator>
  20. <navigator wx:if='{{userInfo.id}}' class="item" url="../aboutus/aboutus">
  21. 关于我们 <image mode="widthFix" src="../images/right_icon.png"></image>
  22. </navigator>
  23. <navigator wx:if='{{userInfo.id}}' class="item" bindtap="logout">
  24. 退出登陆 <image mode="widthFix" src="../images/right_icon.png"></image>
  25. </navigator>
  26. <view class="login" wx:if='{{!userInfo.id}}' >
  27. <input bindinput='inputchange' placeholder="请输入您的代码" value="{{usercode}}"></input>
  28. <button bindtap="login">登录</button>
  29. </view>
  30. </view>
  31. <view class="modal" wx:if='{{userinfo.need_fill}}'>
  32. <view class="fund_modal">
  33. <view>请先输入初始资金</view>
  34. <input type='digit' bindinput="fundchange"></input>
  35. <text>W</text>
  36. <button bindtap="save">确定</button>
  37. </view>
  38. </view>