12345678910111213141516171819202122232425262728 |
- <cu-custom bgColor="bg-lw-header" is-back="{{true}}"><view slot="content">绑定聚才网帐号</view></cu-custom>
- <view class="solids-bottom padding-xs flex align-center" wx:if="{{info.mobile}}">
- <view class="flex-sub text-center">
- <view class="solid-bottom text-xl padding">
- <text class="text-black text-bold">您已绑定帐号{{info.mobile}}</text>
- </view>
- </view>
- </view>
- <view class="solids-bottom padding-xs flex align-center" wx:else>
- <view class="flex-sub text-center">
- <view class="solid-bottom text-xl padding">
- <text class="text-black text-bold">请绑定聚才网帐号</text>
- </view>
- </view>
- </view>
- <form>
- <view class="cu-form-group">
- <view class="title">手机号</view>
- <input placeholder="请输入手机号" value="{{form.mobile}}" bindinput="vmodel" data-value="mobile"></input>
- </view>
- <view class="cu-form-group">
- <view class="title">密码</view>
- <input placeholder="请输入密码" value="{{form.password}}" type="password" bindinput="vmodel" data-value="password"></input>
- </view>
- <view class="padding flex flex-direction">
- <button class="cu-btn lw-red margin-tb-sm lg" style="width:600rpx;" bindtap="submit">绑定</button>
- </view>
- </form>
|