|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!--pages/scout/register/register.wxml-->
- <view class="showView">
- <view class="registerContainer">
- <view class="tabsBox">
- <image class="registerTitle" wx:if="{{type==1}}" src="{{imgUrl+'/images/registerTitle1.png'}}" bindtap="changeType" data-type="0"></image>
- <image class="registerTitle" wx:if="{{type==0}}" src="{{imgUrl+'/images/registerTitle2.png'}}" bindtap="changeType" data-type="1"></image>
- <view class="registerTitleMask" style="left:{{type==0?'50%':0}}"></view>
- </view>
- <image class="welcome" src="{{imgUrl+'/images/registerTip.png'}}"></image>
- <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">
- <!-- <view class="VcodeGroup"> -->
- <image bindtap="vCodeRefresh" class="VcodeImg" src="{{vCodeImg}}"></image>
- <canvas class="canvasSty" canvas-id="canvas"></canvas>
- <!-- </view> -->
- </view>
- <view class="tipTxt">VIN示意图</view>
- <image class="license" src="{{imgUrl+'/star/scout/register/card.png'}}"></image>
- <button class="submitBtn" style="padding:0;margin:20rpx auto 0;min-height:0;" formType="submit">
- <image style="width:100%;height:100%;" src="{{imgUrl+'/images/registerSubmit.png'}}"></image>
- </button>
- <image class="reminder" src="{{imgUrl+'/images/registerTip4.png'}}"></image>
- </view>
- </form>
- <form bindsubmit="formSubmit2" 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;" value="{{mydata.realname}}"/>
- <input name="phone" placeholder="请输入您的手机号码" placeholder-style="font-size:23rpx;" bindinput="getphone" value="{{mydata.mobile}}"/>
- <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" mode="multiSelector" bindchange="changeCity" bindcolumnchange="changeCity2" value="{{cityIndex}}" range="{{cityList}}">
- <view class="picker">{{cityList[0][cityIndex[0]]+" "+cityList[1][cityIndex[1]]}}
- </view>
- <image class="arrowDown" src="{{imgUrl+'/star/scout/register/arrowDown.png'}}"></image>
- </picker>
- <image class="registerMainPic" src="{{imgUrl+'/images/registerMainPic.png?v=002'}}"></image>
- <view class="upPhonoBox">
- <view class="phontBox" wx:for="{{photoListShow}}" wx:key="*this" wx:if="{{photoListShow.length>0}}" data-value="{{index}}">
- <image src="{{item}}" mode="aspectFill" ></image>
- <image bindtap="deleteImg" data-index="{{index}}" class="gameRuleClose" src="{{imgUrl+'/images/gameRuleClose.png'}}"></image>
- </view>
- <image class="upPhontBtn" wx:if="{{photoListShow.length<3}}" src="{{imgUrl+'/star/scout/register/upBtn.png'}}" bindtap="chooseImage"></image>
- </view>
- <image class="photoNotes" src="{{imgUrl+'/images/registerTip2.png'}}" ></image>
- <button class="submitBtn" style="padding:0;margin:20rpx auto 0;min-height:0;" formType="submit">
- <image style="width:100%;height:100%;" src="{{imgUrl+'/images/registerSubmit.png'}}"></image>
- </button>
- <view class="agreementBox">
- <view class="checkBox" bindtap='agreementClick'>
- <icon type="success_no_circle" size="10" wx:if="{{agree}}" />
- </view>
- <image style="width:176rpx;height:16rpx;" src="{{imgUrl+'/images/registerTip3.png'}}"></image>
- </view>
- </view>
- </form>
- </view>
- <view class="mask" wx:if="{{maskShow}}">
- <view class="ruleContent">
- <image class="rule" src="{{imgUrl+'/star/scout/register/getok.png'}}" >></image>
- <view class="returnbtn" bindtap="hiddenRule"></view>
- <image class="closeBtn" src="{{imgUrl+'/star/closebtn.png'}}" bindtap="hiddenRule"></image>
- </view>
- </view>
- </view>
- <tabBar></tabBar>
|