连云港陪玩陪聊
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.
 
 
 
 
 
 
chunwan/pages/users/renzheng/shiming.vue

101 lines
1.7 KiB

<template>
<view class="phone">
<view class="titlle">身份证</view>
<view class="phone-bd">
<view class="item">
<view class="txt">姓名</view>
<input placeholder="请输入本人姓名" type="text" />
</view>
<view class="item">
<view class="txt">证件号</view>
<input placeholder="请输入18位居民身份证号码" type="text" />
</view>
</view>
<view class="phone-fd">
<view class="btn">确定</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
}
}
</script>
<style scoped lang="scss">
.phone{
padding: 25rpx;
overflow: hidden;
.title{
color: #222222;
font-weight: 500;
font-size: 30rpx;
}
.tips{
font-weight: 500;
font-size: 24rpx;
color: #999999;
margin-top: 20rpx;
}
&-fd{
width: 100%;
position: fixed;
left: 0;
bottom: 50rpx;
z-index: 22;
.btn{
width: 700rpx;
line-height: 98rpx;
background: linear-gradient(0deg, #000000, #3D3B38);
border-radius: 98rpx;
font-weight: 400;
font-size: 34rpx;
text-align: center;
color: #FFFFFF;
margin: 0 auto;
}
}
&-bd{
width: 100%;
overflow: hidden;
background: #FFFFFF;
padding: 0 30rpx;
box-sizing: border-box;
border-radius: 20rpx;
margin-top: 30rpx;
.item{
display: flex;
align-items: center;
border-top: 1px solid #EAEAEA;
padding: 50rpx 0 30rpx;
&:first-child{
border-top-color: #FFFFFF;
}
input{
flex: 1;
font-weight: 400;
font-size: 30rpx;
color: #333;
}
.code{
width: 170rpx;
line-height: 60rpx;
background: #000000;
border-radius: 60rpx;
text-align: center;
font-weight: 500;
font-size: 26rpx;
color: #FFFFFF;
}
}
}
}
</style>