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.
103 lines
1.8 KiB
103 lines
1.8 KiB
3 months ago
|
<template>
|
||
|
<view class="phone">
|
||
|
<view class="titlle">提示:</view>
|
||
|
<view class="tips">请输入登录APP的手机号进行认证</view>
|
||
|
<view class="phone-bd">
|
||
|
<view class="item">
|
||
|
<view class="txt">手机号</view>
|
||
|
<input placeholder="请输入手机号" type="number" />
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<view class="txt">验证码</view>
|
||
|
<input placeholder="请输入短信验证码" type="number" />
|
||
|
<view class="code">获取验证码</view>
|
||
|
</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>
|