东风启辰小程序端
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

71 Zeilen
4.0KB

  1. <!--pages/scout/register/register.wxml-->
  2. <view class="showView">
  3. <view class="registerContainer">
  4. <view class="tabsBox">
  5. <view class="item {{type==1?'select':''}}" data-type="1" bindtap="changeType">车主</view>
  6. <view class="item {{type==0?'select':''}}" data-type="0" bindtap="changeType">非车主</view>
  7. </view>
  8. <view class="welcome">欢迎加入星探计划</view>
  9. <form bindsubmit="formSubmit1" wx:if="{{type==1}}">
  10. <view class="Vehicle">
  11. <input name="VIN" placeholder="请输入车牌号/VIN号" placeholder-style="font-size:23rpx;" />
  12. <input name="code" placeholder="请输入验证码" placeholder-style="font-size:23rpx;" style="padding-right:300rpx;" />
  13. <view class="VcodeBox">
  14. <canvas style="width:205rpx;height:51rpx;position:absolute;left:20rpx;bottom:0rpx;text-align: center;z-index:9999;" canvas-id="canvas" bindtap="vCodeRefresh"></canvas>
  15. </view>
  16. <view class="tipTxt">VIN示意图</view>
  17. <image class="license" src="{{imgUrl+'/star/scout/register/card.png'}}"></image>
  18. <button class="submitBtn" formType="submit">提交</button>
  19. <view class="reminder">温馨提示:您填写的信息将同步至东风启辰服务号,以便改善我们的产品,更好的为您提供优质的服务。</view>
  20. </view>
  21. </form>
  22. <form wx:else>
  23. <view class="NoVehicle">
  24. <picker name="vocation" bindchange="changeVocation" value="{{vocationIndex}}" range="{{vocationList}}">
  25. <view class="picker">
  26. 职业:{{vocationList[vocationIndex]}}
  27. </view>
  28. <image class="arrowDown" src="{{imgUrl+'/star/scout/register/arrowDown.png'}}"></image>
  29. </picker>
  30. <input name="name" placeholder="请输入您的姓名" placeholder-style="font-size:23rpx;" />
  31. <input name="phone" placeholder="请输入您的手机号码" placeholder-style="font-size:23rpx;" />
  32. <input name="code" placeholder="请输入您的验证码" placeholder-style="font-size:23rpx;" style="padding-right:250rpx;" />
  33. <view class="getCode" bindtap="getVcode" wx:if="{{getVcodeTime==0}}" style="z-index:99;">获取验证码</view>
  34. <view class="getCode codeTip" wx:if="{{getVcodeTime!=0}}">{{getVcodeTime}}秒后重新发送</view>
  35. <picker name="city" bindchange="changeCity" value="{{cityIndex}}" range="{{cityList}}">
  36. <view class="picker">
  37. {{cityList[cityIndex]}}
  38. </view>
  39. <image class="arrowDown" src="{{imgUrl+'/star/scout/register/arrowDown.png'}}"></image>
  40. </picker>
  41. <view class="hintTitle">网约车司机合影示意图</view>
  42. <view class="hintBox">
  43. <view class="hintItem" style="margin-right:15rpx;">
  44. <image class="hintImg" src="{{imgUrl+'/star/scout/register/hintImg1.png'}}"></image>
  45. <view class="hintTxt">驾驶员与车辆合影示意</view>
  46. </view>
  47. <view class="hintItem" style="margin-left:15rpx;">
  48. <image class="hintImg" src="{{imgUrl+'/star/scout/register/hintImg2.png'}}"></image>
  49. <view class="hintTxt">驾驶员与许可证合影示意</view>
  50. </view>
  51. </view>
  52. <view class="upPhotoTitle">请上传您的照片:</view>
  53. <view class="upPhonoBox">
  54. <view class="phontBox" wx:for="{{photoList}}" wx:if="photoList.length>0">
  55. <image src="{{item}}" mode="aspectFill"></image>
  56. </view>
  57. <image class="upPhontBtn" src="{{imgUrl+'/star/scout/register/upBtn.png'}}" bindtap="chooseImage"></image>
  58. </view>
  59. <view class="photoNotes">注:请上传您与车辆及经营许可证的合影</view>
  60. <button class="submitBtn" formType="submit">提交</button>
  61. <view class="agreementBox">
  62. <view class="checkBox" bindtap='agreementClick'>
  63. <icon type="success_no_circle" size="10" wx:if="{{agree}}" />
  64. </view>
  65. 请阅读并同意本协议内容
  66. </view>
  67. </view>
  68. </form>
  69. </view>
  70. </view>
  71. <tabBar></tabBar>