bind.wxml 1.2 KB

12345678910111213141516171819202122232425262728
  1. <cu-custom bgColor="bg-lw-header" is-back="{{true}}"><view slot="content">绑定聚才网帐号</view></cu-custom>
  2. <view class="solids-bottom padding-xs flex align-center" wx:if="{{info.mobile}}">
  3. <view class="flex-sub text-center">
  4. <view class="solid-bottom text-xl padding">
  5. <text class="text-black text-bold">您已绑定帐号{{info.mobile}}</text>
  6. </view>
  7. </view>
  8. </view>
  9. <view class="solids-bottom padding-xs flex align-center" wx:else>
  10. <view class="flex-sub text-center">
  11. <view class="solid-bottom text-xl padding">
  12. <text class="text-black text-bold">请绑定聚才网帐号</text>
  13. </view>
  14. </view>
  15. </view>
  16. <form>
  17. <view class="cu-form-group">
  18. <view class="title">手机号</view>
  19. <input placeholder="请输入手机号" value="{{form.mobile}}" bindinput="vmodel" data-value="mobile"></input>
  20. </view>
  21. <view class="cu-form-group">
  22. <view class="title">密码</view>
  23. <input placeholder="请输入密码" value="{{form.password}}" type="password" bindinput="vmodel" data-value="password"></input>
  24. </view>
  25. <view class="padding flex flex-direction">
  26. <button class="cu-btn lw-red margin-tb-sm lg" style="width:600rpx;" bindtap="submit">绑定</button>
  27. </view>
  28. </form>