|
|
@ -9,33 +9,40 @@ |
|
|
<v-input v-model="form.realname" :placeholder="$t('auth.b0')"></v-input> |
|
|
<v-input v-model="form.realname" :placeholder="$t('auth.b0')"></v-input> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<!-- 出生日期 --> |
|
|
<!-- 出生日期 --> |
|
|
<view class="form-item border-b p-md m-b-md" v-if="0"> |
|
|
<view class="form-item border-b p-md m-b-md" v-if="0"> |
|
|
<view class="label m-b-xs">{{$t('auth.d0')}}</view> |
|
|
<view class="label m-b-xs">{{$t('auth.d0')}}</view> |
|
|
<view class="input color-light" > |
|
|
<view class="input color-light" > |
|
|
<uni-datetime-picker |
|
|
<uni-datetime-picker |
|
|
type="date" |
|
|
type="date" |
|
|
:value="single" |
|
|
:value="single" |
|
|
start="1900-1-1" |
|
|
start="1900-1-1" |
|
|
end="2050-12-12" |
|
|
end="2050-12-12" |
|
|
@change="selectDate" |
|
|
@change="selectDate" |
|
|
/> |
|
|
/> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<!-- 证件号类型 --> |
|
|
<view class="form-item border-b p-md m-b-md"> |
|
|
<view class="form-item border-b p-md m-b-md"> |
|
|
<view class="label m-b-xs">{{$t('auth.d0')}}</view> |
|
|
<view class="label m-b-xs">{{$t('auth.d1')}}</view> |
|
|
<view class="input color-light"> |
|
|
<view class="input color-light" style="height: 30px;"> |
|
|
<uni-datetime-picker type="date" :placeholder="$t('auth.d0')" start="1873-1-01" :end="new Date().toLocaleDateString()" |
|
|
<v-picker :value="form.type" @change="selectType" :list="typeList" range-value="value" range-label="label"> |
|
|
:clear-icon="false" v-model="form.birthday" @maskClick="maskClick" /> |
|
|
<v-input disabled :value="activeType.label" :placeholder="$t('auth.d13')"> |
|
|
</view> |
|
|
<template #right> |
|
|
</view> |
|
|
<van-icon class="color-default" name="arrow" /> |
|
|
<!-- 证件号类型 --> |
|
|
</template> |
|
|
<view class="form-item border-b p-md m-b-md"> |
|
|
</v-input> |
|
|
<view class="label m-b-xs">{{$t('auth.d1')}}</view> |
|
|
</v-picker> |
|
|
<view class="input color-light" style="height: 30px;"> |
|
|
</view> |
|
|
<v-picker :value="form.type" @change="selectType" :list="typeList" range-value="value" range-label="label"> |
|
|
</view> |
|
|
<v-input disabled :value="activeType.label" :placeholder="$t('auth.d13')"> |
|
|
<!-- 证件号 --> |
|
|
<template #right> |
|
|
|
|
|
<van-icon class="color-default" name="arrow" /> |
|
|
|
|
|
</template> |
|
|
|
|
|
</v-input> |
|
|
|
|
|
</v-picker> |
|
|
|
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
<!-- 证件号 --> |
|
|
<view class="form-item border-b p-md m-b-md"> |
|
|
<view class="form-item border-b p-md m-b-md"> |
|
|
<view class="label m-b-xs">{{$t('auth.b1')}}</view> |
|
|
<view class="label m-b-xs">{{$t('auth.b1')}}</view> |
|
|
<view class="input color-light"> |
|
|
<view class="input color-light"> |
|
|
@ -264,4 +271,16 @@ export default { |
|
|
height: 24px; |
|
|
height: 24px; |
|
|
font-size: 15px; |
|
|
font-size: 15px; |
|
|
} |
|
|
} |
|
|
|
|
|
/deep/.uni-date-x--border{ |
|
|
|
|
|
border: 0px; |
|
|
|
|
|
} |
|
|
|
|
|
/deep/.uni-date__x-input{ |
|
|
|
|
|
padding-left: 0px; |
|
|
|
|
|
} |
|
|
|
|
|
/deep/.uni-date-x .icon-calendar{ |
|
|
|
|
|
padding-left: 0px; |
|
|
|
|
|
} |
|
|
|
|
|
/deep/.uni-date-x{ |
|
|
|
|
|
background-color: transparent; |
|
|
|
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
|