东风启辰小程序端
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

53 lines
3.2KB

  1. <!--pages/yuyue/yuyue.wxml-->
  2. <view class="all">
  3. <view class="main">
  4. <view class="titleText">预约试驾</view>
  5. <view class="lineSty"></view>
  6. <image class="closeXieyi" bindtap="closeXieyi" src="{{imgUrl+'/images/closeXieyi.png'}}"></image>
  7. <image class="yuyueTop" src="{{imgUrl+'/images/yuyueTop.png'}}"></image>
  8. <view class="inputGroup">
  9. <input class="inputCode" bindinput="getRealname" value="{{subscribeData.realname}}" placeholder="请输入您的姓名"></input>
  10. </view>
  11. <view class="inputGroup">
  12. <input class="inputCode" bindinput="getMobile" type="number" value="{{subscribeData.mobile}}" maxlength='11' placeholder="请输入您的联系电话"></input>
  13. <view class="getPhoneFrame" wx:if="{{!phoneInputShow}}">
  14. <button class="getPhoneBtn" style="width: 652rpx;height: 65rpx;margin: 0;padding: 0;min-height: 0;" open-type="getPhoneNumber" bindgetphonenumber="getUserPhone"></button>
  15. </view>
  16. </view>
  17. <view class="inputGroup">
  18. <input class="inputCode" bindfocus="showSite" style="width:450rpx;" value="{{subscribeData.captcha}}" bindinput="getCaptcha" placeholder="请输入验证码"></input>
  19. <view class="codeTime" bindtap="getCode">{{verificationCode}}</view>
  20. </view>
  21. <view wx:if="{{siteSelect}}">
  22. <picker mode='selector' range="{{provinceArr}}" range-key="province" value="{{provinceValue}}" bindchange="provinceChane">
  23. <view class="selectSiteGroup">
  24. <text class="selectName">{{provinceArr[provinceValue].province}}</text>
  25. <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
  26. </view>
  27. </picker>
  28. <picker mode='selector' range="{{storeArr}}" range-key="agent_detail" value="{{storeValue}}" bindchange="storeChane">
  29. <view class="selectSiteGroup">
  30. <text class="selectName">{{storeArr[storeValue].agent_detail}}</text>
  31. <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
  32. </view>
  33. </picker>
  34. </view>
  35. <view class="agreementGroup">
  36. <image class="agreeIcon" bindtap="agreementState" src="{{imgUrl+(isAgreement?'/images/agreeIcon.png?v=003':'/images/disagreeIcon.png?v=002')}}"></image>
  37. <view class="agreementText">
  38. <image style="width:261rpx;height:23rpx;" src="{{imgUrl+'/images/myCenterAgreenTip.png'}}"></image>
  39. <view bindtap="agreementControl">
  40. <image style="width:240rpx;height:23rpx;margin-left:3rpx;" src="{{imgUrl+'/images/myCenterAgreen.png'}}"></image>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="subscribeBtn" bindtap="subscribeFun">
  45. <image style="width:100%;height:100%;" src="{{imgUrl+'/btns/myCenterBtn1.png'}}"></image>
  46. <button wx:if="{{userData}}" class="getUserMsgBtn" open-type="getUserInfo" lang="zh_CN" bindgetuserinfo="getUserWxMsg" style="width:100%;height:100%;min-height:0;padding:0;margin:0;"></button>
  47. </view>
  48. <view class="subscribeBtn" bindtap="lookMore">
  49. <image style="width:100%;height:100%;" src="{{imgUrl+'/btns/myCenterBtn2.png'}}"></image>
  50. </view>
  51. </view>
  52. <agreement bindmyevent="agreementControl" wx:if="{{agreement}}"></agreement>
  53. </view>