|
@@ -40,8 +40,7 @@
|
|
|
<image class="wh-45 m-r20" src="/static/img/task/sf_icon.png" mode=""></image>
|
|
<image class="wh-45 m-r20" src="/static/img/task/sf_icon.png" mode=""></image>
|
|
|
<text class="size-26">身份证认证</text>
|
|
<text class="size-26">身份证认证</text>
|
|
|
</view>
|
|
</view>
|
|
|
- <button class="attestation-button button-background button-color size-26 r-30" type="default"
|
|
|
|
|
- hover-class="is-hover" @click="onAuthentication">去认证</button>
|
|
|
|
|
|
|
+ <button class="attestation-button button-background button-color size-26 r-30" type="default" hover-class="is-hover" @click="onAuthentication(1)">去认证</button>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="p-t20">
|
|
<view class="p-t20">
|
|
|
<WhInput :value="formData.name" name="姓名" placeholder="待自动录入" disabled></WhInput>
|
|
<WhInput :value="formData.name" name="姓名" placeholder="待自动录入" disabled></WhInput>
|
|
@@ -56,7 +55,18 @@
|
|
|
<en-city label="常居城市" placeholder="请选择省、市、区" v-if="verifyKey('resident_city')" v-model="formData.resident_city"></en-city>
|
|
<en-city label="常居城市" placeholder="请选择省、市、区" v-if="verifyKey('resident_city')" v-model="formData.resident_city"></en-city>
|
|
|
<WhInput :name="'详细地址'" :value="formData.resident_address" v-if="verifyKey('resident_address')"></WhInput>
|
|
<WhInput :name="'详细地址'" :value="formData.resident_address" v-if="verifyKey('resident_address')"></WhInput>
|
|
|
<en-select label="婚姻状态" :local-data="marriageData" v-if="verifyKey('marriage_type')" v-model="formData.marriage_type"></en-select>
|
|
<en-select label="婚姻状态" :local-data="marriageData" v-if="verifyKey('marriage_type')" v-model="formData.marriage_type"></en-select>
|
|
|
|
|
+ <en-upload label="添加结婚证" :imageWidth="180" v-if="verifyKey('marriage_img') && formData.marriage_type!=='1'" v-model="formData.marriage_img"></en-upload>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+ <view class="sys-background-fff r-20 m-t20 p-lr30" v-if="formData.marriage_type===2">
|
|
|
|
|
+ <WhInput label="配偶姓名" type="text" placeholder="等待自动录入" v-if="verifyKey('mate_name')"
|
|
|
|
|
+ v-model="formData.mate_name"></WhInput>
|
|
|
|
|
+ <WhInput label="配偶身份" type="idcard" placeholder="等待自动录入" v-if="verifyKey('mate_id_number')"
|
|
|
|
|
+ v-model="formData.mate_id_number"></WhInput>
|
|
|
|
|
+ <WhInput label="配偶手机号" type="number" placeholder="请输入手机号码" v-if="verifyKey('mate_phone')"
|
|
|
|
|
+ v-model="formData.mate_phone"></WhInput>
|
|
|
|
|
+ <WhInput label="配偶企业" type="text" placeholder="请输入配偶所在企业" v-if="verifyKey('mate_firm')"
|
|
|
|
|
+ v-model="formData.mate_firm" :no-box="true"></WhInput>
|
|
|
|
|
+ </view>
|
|
|
</view>
|
|
</view>
|
|
|
<!-- 身份认证end -->
|
|
<!-- 身份认证end -->
|
|
|
|
|
|
|
@@ -75,7 +85,7 @@
|
|
|
<!-- 教育职业背景end -->
|
|
<!-- 教育职业背景end -->
|
|
|
|
|
|
|
|
<!-- 社保信息start -->
|
|
<!-- 社保信息start -->
|
|
|
- <view class="m-t20 m-lr30 text-color-12" v-if="step === 3 || step === 4">
|
|
|
|
|
|
|
+ <view class="m-t20 m-lr30 text-color-12" v-if="step === 3 ">
|
|
|
<view class="sys-background-fff r-20 m-t20 p-lr30 p-t30">
|
|
<view class="sys-background-fff r-20 m-t20 p-lr30 p-t30">
|
|
|
<view class="size-30 sys-weight-600 p-b30">社保信息</view>
|
|
<view class="size-30 sys-weight-600 p-b30">社保信息</view>
|
|
|
<WhInput name="缴纳时间" rightText="月" placeholder="请输入社保连续缴纳时间"></WhInput>
|
|
<WhInput name="缴纳时间" rightText="月" placeholder="请输入社保连续缴纳时间"></WhInput>
|
|
@@ -85,7 +95,7 @@
|
|
|
<!-- 社保信息end -->
|
|
<!-- 社保信息end -->
|
|
|
</view>
|
|
</view>
|
|
|
<!-- <EnButton :text="'完成'" @onSubmit="onSubmit" v-if="step === 3 || step === 4"></EnButton> -->
|
|
<!-- <EnButton :text="'完成'" @onSubmit="onSubmit" v-if="step === 3 || step === 4"></EnButton> -->
|
|
|
- <EnButton v-if="step === 3 || step === 4" is_both :leftText="'上一步'" :rightText="'保存'" @onLeftSubmit="onStep(0)"
|
|
|
|
|
|
|
+ <EnButton v-if="step === 3" is_both :leftText="'上一步'" :rightText="'保存'" @onLeftSubmit="onStep(0)"
|
|
|
@onSubmit="onSubmit" />
|
|
@onSubmit="onSubmit" />
|
|
|
<EnButton v-else is_both :leftText="'保存'" :rightText="'下一步'" @onLeftSubmit="onLeftSubmit" @onSubmit="onStep(1)">
|
|
<EnButton v-else is_both :leftText="'保存'" :rightText="'下一步'" @onLeftSubmit="onLeftSubmit" @onSubmit="onStep(1)">
|
|
|
</EnButton>
|
|
</EnButton>
|
|
@@ -206,7 +216,7 @@
|
|
|
// 身份认证
|
|
// 身份认证
|
|
|
onAuthentication(item) {
|
|
onAuthentication(item) {
|
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
|
- url: "/page_task/identity_upload/identity_upload"
|
|
|
|
|
|
|
+ url: "/page_task/identity_upload/identity_upload?identity_one="+this.formData.identity_one+'&identity_two='+this.formData.identity_two+'&name='+this.formData.name+'&identity_validity='+this.formData.identity_validity
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
// 保存
|
|
// 保存
|