12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!--pages/temporary_prove/index.wxml-->
- <view class="page">
- <image class="bg" src="../../../static/images/bg.jpg"></image>
- <!-- <image class="logo2" style="top: {{CustomBar+20}}px" src="../../../static/images/logo2.png"></image> -->
- <image class="title" style="top: {{CustomBar+30}}px" src="../../../static/images/title.png"></image>
- <view class="input-box">
- <view class="line">
- ------------------------ 实名信息 ------------------------
- </view>
- <view>
- <input placeholder-style="color: white" class="inputText" type="text" placeholder="请输入姓名" maxlength="50" value="{{inputName}}" bindinput="getInputName"></input>
- <view class="margin-top-sm flex align-center" wx:if="{{(warnName!=1&&warnName!=2)}}">
- <view class="cuIcon-infofill text-warning text-sm"></view><text class="text-sm text-warning margin-left-xs">{{warnName}}</text>
- </view>
- </view>
- <view>
- <input placeholder-style="color: white" class="inputText" type="idcard" placeholder="请输入身份证号" maxlength="18" value="{{inputIdcard}}" bindinput="getInputIdcard"></input>
- <view class="margin-top-sm flex align-center" wx:if="{{(warnIdcard!=1&&warnIdcard!=2)}}">
- <view class="cuIcon-infofill text-warning text-sm"></view><text class="text-sm text-warning margin-left-xs">{{warnIdcard}}</text>
- </view>
- </view>
- <view>
- <input placeholder-style="color: white" class="inputText" type="idcard" placeholder="请输入手机号" maxlength="11" value="{{phone}}" bindinput="getPhoneNumber"></input>
- <view class="margin-top-sm flex align-center" wx:if="{{warnPhone}}">
- <view class="cuIcon-infofill text-warning text-sm"></view><text class="text-sm text-warning margin-left-xs">{{warnPhone}}</text>
- </view>
- </view>
- <!-- <view>
- <button class="btn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">{{phone?phone:'点击获取手机号'}}</button>
- </view> -->
- <view class="line">
- ------------------------ 其他信息 ------------------------
- </view>
- <view>
- <input placeholder-style="color: white" class="inputText" placeholder="请输入您的单位" value="{{workPlace}}" bindinput="getValue" data-type="workPlace"></input>
- </view>
- <view>
- <text class="inputText carNumber-text" bindtap="getCarNumber">{{carNumber?carNumber:'请输入您的车牌号(非必填)'}}</text>
- <!-- <input placeholder-style="color: white" class="inputText" placeholder="请输入您的车牌号(非必填)" value="{{carNumber}}" bindinput="getCarNumber"></input> -->
- </view>
- <view style="text-align: center">
- <button class="btn2 text-xl" disabled="{{!(inputName&&inputIdcard&&warnIdcard===2&&warnName===2&&!warnPhone&&disableSubmit&&phone&&workPlace)}}" bindtap="submit">提交</button>
- <text class="sub-title" bindtap="watch">点击查看操作说明</text>
- </view>
- </view>
- <add-car-number value="{{carNumber}}" placeholder="" data-type="carNumber" bindchange="getValue" iscarNumber="{{iscarNumber}}"></add-car-number>
- </view>
|