1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <view class="bg">
- <image style="width:100%;height:15vh;" mode="scaleToFill" src="../images/my_bg.png"></image>
- <view class="info">
- <view class='avatar'>
- <open-data wx:if='{{!userinfo.avatar}}' type="userAvatarUrl">
- </open-data>
- <image style="width:100%;height:100%;" wx:else src="{{userinfo.avatar}}"></image>
- </view>
- <view class="name">
- <open-data wx:if='{{!userinfo.username}}' type="userNickName">
- </open-data>
- <view wx:else>{{userinfo.username}}</view>
-
- <view wx:if='{{userInfo.id}}'>代码:{{usercode}}</view>
- <view wx:else style="margin-top:20rpx;">欢迎来到湖南顽主杯实盘大赛</view>
- </view>
- </view>
- <navigator wx:if='{{userInfo.id}}' class="item" url="../game/game">
- 参赛数据 <image mode="widthFix" src="../images/right_icon.png"></image>
- </navigator>
- <navigator wx:if='{{userInfo.id}}' class="item" url="../aboutus/aboutus">
- 关于我们 <image mode="widthFix" src="../images/right_icon.png"></image>
- </navigator>
- <navigator wx:if='{{userInfo.id}}' class="item" bindtap="logout">
- 退出登陆 <image mode="widthFix" src="../images/right_icon.png"></image>
- </navigator>
- <view class="login" wx:if='{{!userInfo.id}}' >
- <input bindinput='inputchange' placeholder="请输入您的代码" value="{{usercode}}"></input>
- <button bindtap="login">登录</button>
- </view>
- </view>
- <view class="modal" wx:if='{{userinfo.need_fill}}'>
- <view class="fund_modal">
- <view>请先输入初始资金</view>
- <input type='digit' bindinput="fundchange"></input>
- <text>W</text>
- <button bindtap="save">确定</button>
- </view>
- </view>
|