index.wxml 1.5 KB

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