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