实名认证页面优化
This commit is contained in:
parent
ec8e849bf5
commit
88cdceb780
|
|
@ -1,16 +1,20 @@
|
||||||
<template>
|
<template>
|
||||||
<view class="containerView">
|
<view class="containerView">
|
||||||
<up-cell-group label-width="80" :border="false">
|
<up-cell-group label-width="80" :border="false">
|
||||||
<up-cell :label-style="{ width: '100rpx' }" title="姓名">
|
<up-cell>
|
||||||
|
<template #title> <view style="width: 90px;">姓名</view></template>
|
||||||
<template #right-icon> <up-input border="none" v-model="data.certName" placeholder="请输入姓名"></up-input> </template>
|
<template #right-icon> <up-input border="none" v-model="data.certName" placeholder="请输入姓名"></up-input> </template>
|
||||||
</up-cell>
|
</up-cell>
|
||||||
<up-cell title="身份证号码">
|
<up-cell>
|
||||||
|
<template #title> <view style="width: 90px;">身份证号码</view></template>
|
||||||
<template #right-icon> <up-input border="none" v-model="data.certNum" placeholder="请输入身份证号码"></up-input> </template>
|
<template #right-icon> <up-input border="none" v-model="data.certNum" placeholder="请输入身份证号码"></up-input> </template>
|
||||||
</up-cell>
|
</up-cell>
|
||||||
<up-cell title="银行卡号码">
|
<up-cell>
|
||||||
|
<template #title> <view style="width: 90px;">银行卡号码</view></template>
|
||||||
<template #right-icon> <up-input border="none" v-model="data.accountNo" placeholder="请输入银行卡号码"></up-input> </template>
|
<template #right-icon> <up-input border="none" v-model="data.accountNo" placeholder="请输入银行卡号码"></up-input> </template>
|
||||||
</up-cell>
|
</up-cell>
|
||||||
<up-cell title="手机号">
|
<up-cell>
|
||||||
|
<template #title> <view style="width: 90px;">手机号</view></template>
|
||||||
<template #right-icon> <up-input border="none" v-model="data.mobile" placeholder="请输入银行预留号码"></up-input> </template>
|
<template #right-icon> <up-input border="none" v-model="data.mobile" placeholder="请输入银行预留号码"></up-input> </template>
|
||||||
</up-cell>
|
</up-cell>
|
||||||
</up-cell-group>
|
</up-cell-group>
|
||||||
|
|
@ -125,7 +129,9 @@
|
||||||
page {
|
page {
|
||||||
background: #FFFFFF;
|
background: #FFFFFF;
|
||||||
}
|
}
|
||||||
|
.u-cell__body__content{
|
||||||
|
flex: 0!important;
|
||||||
|
}
|
||||||
.containerView {
|
.containerView {
|
||||||
padding:30rpx;
|
padding:30rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue