12345678910111213141516171819202122232425262728293031323334 |
- <view class="container">
- <image src="/static/black.png" style="margin-top:{{menuTop}}px;" class='black' bindtap="black" />
- <view class="titleBox">
- <view class="t1">填写个人信息</view>
- <view class="t2">请填写真实信息</view>
- </view>
- <view class="form">
- <view class="row {{isSubmit&&username==''?'r1':''}}" style="border-bottom: 1rpx solid #EEEEEE;">
- <view class="label">*姓名</view>
- <input placeholder="请输入真实姓名" class='nickName' placeholder-class="nickName" maxlength="8"
- bindblur='bindblur'></input>
- </view>
- <view class="row {{isSubmit&&mobile==''?'r2':''}}">
- <view class="label">*手机号</view>
- <button class="resetBtn" open-type="getPhoneNumber"
- bindgetphonenumber="getmobileNumber">{{mobile==''?'请输入手机号':mobile}}</button>
- </view>
- </view>
- <view class="qrCodeBox">
- <view>长按识别二维码 添加客服微信</view>
- <image
- src="https://reader-wx.ai160.com/images/reader/pay/saleQrcode.jpg"
- show-menu-by-longpress="{{true}}" class="qrCode" />
- <view class="content">
- 运营方案和营销工具的支持,共享优秀推荐案例
- </view>
- <view class="content">
- 遇到对账、结算、支付等问题,1对1沟通解决
- </view>
- </view>
- <view class="bottom">
- <button class="resetBtn btn" bindtap="submit">完成</button>
- </view>
- </view>
|