index.wxml 1.1 KB

1234567891011121314151617181920212223242526
  1. <scroll-view scroll-y="true" class="scroll-view">
  2. <view class="identify-box" style="height:240rpx;" > </view>
  3. <view class="p20 ">
  4. <view class="info-title">绑定用户信息</view>
  5. <form class="p20" bindsubmit="doIdentify">
  6. <i-input value="{{ studyUser.nickname }}" name="nickname" title="*输入名字" class="mt20" maxlength="100" />
  7. <i-input value="{{ studyUser.cardId }}" name="cardId" title="*输入账号" class="mt20" maxlength="18" />
  8. <i-input value="{{ studyUser.phone }}" name="phone" title="*联系方式" class="mt20" type="number" maxlength="11"/>
  9. <button class="i-btn i-btn-primary i-btn-square" form-type="submit">绑定微信</button>
  10. </form>
  11. </view>
  12. <view class="tc">
  13. <view>
  14. <text style="color:red">姓名、账号、联系方式三者一致才能绑定微信</text>
  15. </view>
  16. <view style="margin-top: 30rpx;">
  17. <text> 已经绑定的可以快捷登入 </text>
  18. </view>
  19. <button class="mt20" type="primary" bindtap="wxLogin" size="mini">
  20. 快捷登入
  21. </button>
  22. </view>
  23. </scroll-view>