征信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zhengxinApplets/pages/user/verification.vue

155 lines
3.0 KiB

3 months ago
<template>
<view class="verification">
<view class="c">身份信息<text>认证失败</text></view>
<view class="a">
<view class="item">
<view class="fl">姓名</view>
<view class="fr">
<input type="text" placeholder="请输入本人姓名" />
</view>
</view>
<view class="item">
<view class="fl">证件号</view>
<view class="fr">
<input type="text" placeholder="请输入18位居民身份证号码" />
</view>
</view>
</view>
<view class="b">
<view class="title">本人身份证照片</view>
2 months ago
<image src="https://zhengxin.njrenzhou.cn/static/sfz-01.png"></image>
<image src="https://zhengxin.njrenzhou.cn/static/sfz-02.png"></image>
3 months ago
<view class="err">失败原因照片与信息不符</view>
<!-- <view class="btn">确定</view> -->
<view class="btns">重新认证</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style scoped lang="scss">
page{
background-color: #fff;
}
.verification{
background-color: #fff;
padding: 0 25rpx;
.c{
font-weight: 500;
font-size: 36rpx;
color: #222222;
display: flex;
align-items: center;
padding: 25rpx 0;
text{
width: 120rpx;
height: 50rpx;
line-height: 50rpx;
background: #D80C0C;
border-radius: 4rpx;
display: block;
margin-left: 20rpx;
text-align: center;
font-weight: 500;
font-size: 22rpx;
color: #FFFFFF;
.on{
background-color: #00C6A9;
}
}
}
.a{
overflow: hidden;
.item{
padding: 40rpx 0;
border-bottom: 1px solid #EAEAEA;
display: flex;
align-items: center;
justify-content: space-between;
.fr{
flex: 1;
input{
font-weight: 400;
font-size: 30rpx;
color: #999999;
line-height: 40rpx;
text-align: right;
}
}
}
}
.b{
.title{
font-weight: 500;
font-size: 36rpx;
color: #222222;
display: flex;
align-items: center;
padding: 25rpx 0;
text{
width: 120rpx;
height: 50rpx;
line-height: 50rpx;
background: #D80C0C;
border-radius: 4rpx;
display: block;
margin-left: 20rpx;
text-align: center;
font-weight: 500;
font-size: 22rpx;
color: #FFFFFF;
}
}
image{
width: 555rpx;
height: 345rpx;
display: block;
border-radius: 20rpx;
margin: 35rpx auto 0;
}
.err{
font-weight: 400;
font-size: 28rpx;
color: #D80C0C;
line-height: 40rpx;
margin-top: 40rpx;
}
.btn{
width: 702rpx;
line-height: 90rpx;
background: #00C6A9;
box-shadow: 0px 3rpx 10rpx 0px rgba(9,44,39,0.05);
border-radius: 90rpx;
text-align: center;
font-weight: 500;
font-size: 30rpx;
color: #FFFFFF;
margin: 0 auto;
margin-top: 170rpx;
}
.btns{
width: 702rpx;
line-height: 90rpx;
background: #00C6A9;
box-shadow: 0px 3rpx 10rpx 0px rgba(9,44,39,0.05);
border-radius: 90rpx;
text-align: center;
font-weight: 500;
font-size: 30rpx;
color: #FFFFFF;
margin: 0 auto;
margin-top: 70rpx;
}
}
}
</style>