|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!--pages/scout/register/register.wxml-->
- <view class="showView">
- <view class="registerContainer">
- <view class="tabsBox">
- <view class="item {{type==1?'select':''}}" data-type="1" bindtap="changeType">车主</view>
- <view class="item {{type==0?'select':''}}" data-type="0" bindtap="changeType">非车主</view>
- </view>
- <view class="welcome">欢迎加入星探计划</view>
- <form bindsubmit="formSubmit1" wx:if="{{type==1}}">
- <view class="Vehicle">
- <input name="VIN" placeholder="请输入车牌号/VIN号" placeholder-style="font-size:23rpx;" />
- <input name="code" placeholder="请输入验证码" placeholder-style="font-size:23rpx;" style="padding-right:300rpx;" />
- <view class="VcodeBox">
- <canvas style="width:205rpx;height:51rpx;position:absolute;left:20rpx;bottom:0rpx;text-align: center;z-index:9999;" canvas-id="canvas" bindtap="vCodeRefresh"></canvas>
- </view>
- <view class="tipTxt">VIN示意图</view>
- <image class="license" src="{{imgUrl+'/star/scout/register/card.png'}}"></image>
- <button class="submitBtn" formType="submit">提交</button>
- <view class="reminder">温馨提示:您填写的信息将同步至东风启辰服务号,以便改善我们的产品,更好的为您提供优质的服务。</view>
- </view>
- </form>
- <form wx:else>
- <view class="NoVehicle">
- <picker name="vocation" bindchange="changeVocation" value="{{vocationIndex}}" range="{{vocationList}}">
- <view class="picker">
- 职业:{{vocationList[vocationIndex]}}
- </view>
- <image class="arrowDown" src="{{imgUrl+'/star/scout/register/arrowDown.png'}}"></image>
- </picker>
- <input name="name" placeholder="请输入您的姓名" placeholder-style="font-size:23rpx;" />
- <input name="phone" placeholder="请输入您的手机号码" placeholder-style="font-size:23rpx;" />
- <input name="code" placeholder="请输入您的验证码" placeholder-style="font-size:23rpx;" style="padding-right:250rpx;" />
- <view class="getCode" bindtap="getVcode" wx:if="{{getVcodeTime==0}}" style="z-index:99;">获取验证码</view>
- <view class="getCode codeTip" wx:if="{{getVcodeTime!=0}}">{{getVcodeTime}}秒后重新发送</view>
- <picker name="city" bindchange="changeCity" value="{{cityIndex}}" range="{{cityList}}">
- <view class="picker">
- {{cityList[cityIndex]}}
- </view>
- <image class="arrowDown" src="{{imgUrl+'/star/scout/register/arrowDown.png'}}"></image>
- </picker>
- <view class="hintTitle">网约车司机合影示意图</view>
- <view class="hintBox">
- <view class="hintItem" style="margin-right:15rpx;">
- <image class="hintImg" src="{{imgUrl+'/star/scout/register/hintImg1.png'}}"></image>
- <view class="hintTxt">驾驶员与车辆合影示意</view>
- </view>
- <view class="hintItem" style="margin-left:15rpx;">
- <image class="hintImg" src="{{imgUrl+'/star/scout/register/hintImg2.png'}}"></image>
- <view class="hintTxt">驾驶员与许可证合影示意</view>
- </view>
- </view>
- <view class="upPhotoTitle">请上传您的照片:</view>
- <view class="upPhonoBox">
- <view class="phontBox" wx:for="{{photoList}}" wx:if="photoList.length>0">
- <image src="{{item}}" mode="aspectFill"></image>
- </view>
- <image class="upPhontBtn" src="{{imgUrl+'/star/scout/register/upBtn.png'}}" bindtap="chooseImage"></image>
- </view>
- <view class="photoNotes">注:请上传您与车辆及经营许可证的合影</view>
- <button class="submitBtn" formType="submit">提交</button>
- <view class="agreementBox">
- <view class="checkBox" bindtap='agreementClick'>
- <icon type="success_no_circle" size="10" wx:if="{{agree}}" />
- </view>
- 请阅读并同意本协议内容
- </view>
- </view>
- </form>
- </view>
- </view>
- <tabBar></tabBar>
|