123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <template>
- <view class="pages-content">
- <headContent borderBottom>
- <template #left>
- <reverse-back />
- </template>
- </headContent>
- <view class="content">
- <view class="content-title">
- <text class="content-icon iconfont"></text>
- <text class="content-text">验证</text>
- </view>
- <text class="content-text">1个简单步骤</text>
- <view class="content-list">
- <view class="content-list-item">
- <text class="item-num">1</text>
- <text class="item-text">拍摄您的身份证件照片</text>
- </view>
- </view>
- </view>
- <view class="footer-info">
- <view class="footer-btn" @click.stop="nextStep">
- 开始
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- methods:{
- nextStep(){
- uni.navigateTo({
- url:'/pages/content/identification/select-type'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .pages-content{
- width: 100%;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- }
- .content {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 100%;
- text-align: center;
- padding: 0 $pages-padding;
- .content-title {
-
- padding-bottom: 20rpx;
- .content-icon {
- font-size: 50rpx;
- color: $Theme-Color;
- margin-right: 10rpx;
- }
- .content-text{
- line-height: 1;
- padding-bottom: 0;
- }
- }
- .content-text {
- font-size: 60rpx;
- padding-bottom: 20rpx;
- }
- .content-list {
- margin-top: 20rpx;
- width: 100%;
- background-color: #e1e0e0;
- padding: 40rpx;
- border-radius: 10rpx;
- .content-list-item {
- display: flex;
- .item-num {
- width: 50rpx;
- height: 50rpx;
- background-color: #e3e3e3;
- border-radius: 50%;
- margin-right: 30rpx;
- text-align: center;
- line-height: 50rpx;
- font-size: 28rpx;
- font-weight: bold;
- }
- .item-text {
- line-height: 50rpx;
- font-size: 28rpx;
- }
- }
- }
- }
- .footer-info {
- width: 100%;
- position: fixed;
- left: 50%;
- transform: translateX(-50%);
- bottom: 60rpx;
- padding: $pages-padding;
- .footer-btn {
- width: 100%;
- height: 100rpx;
- background-color: $Theme-Color;
- text-align: center;
- line-height: 100rpx;
- color: #fff;
- border-radius: 10rpx;
- }
- }
- </style>
|