index.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view>
  3. <headContent borderBottom>
  4. <template #left>
  5. <reverse-back />
  6. </template>
  7. </headContent>
  8. <view class="content">
  9. <view class="content-title">
  10. <text class="content-icon iconfont">&#xe632;</text>
  11. <text class="content-text">验证</text>
  12. </view>
  13. <text class="content-text">1个简单步骤</text>
  14. <view class="content-list">
  15. <view class="content-list-item">
  16. <text class="item-num">1</text>
  17. <text class="item-text">拍摄您的身份证件照片</text>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="footer-info">
  22. <view class="footer-btn">
  23. 开始
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. data() {
  31. return {
  32. };
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .content {
  38. width: 100%;
  39. min-height: 100vh;
  40. padding: 0 $pages-padding;
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: center;
  44. align-items: center;
  45. .content-title {
  46. display: flex;
  47. align-items: center;
  48. .content-icon {
  49. font-size: 50rpx;
  50. color: $Theme-Color;
  51. }
  52. }
  53. .content-text {
  54. font-size: 60rpx;
  55. padding-bottom: 20rpx;
  56. }
  57. .content-list {
  58. margin-top: 20rpx;
  59. width: 100%;
  60. background-color: #e1e0e0;
  61. padding: 40rpx;
  62. border-radius: 10rpx;
  63. .content-list-item {
  64. display: flex;
  65. .item-num {
  66. width: 50rpx;
  67. height: 50rpx;
  68. background-color: #cacaca;
  69. border-radius: 50%;
  70. margin-right: 30rpx;
  71. text-align: center;
  72. line-height: 50rpx;
  73. font-size: 28rpx;
  74. font-weight: bold;
  75. }
  76. .item-text {
  77. line-height: 50rpx;
  78. font-size: 28rpx;
  79. }
  80. }
  81. }
  82. }
  83. .footer-info {
  84. width: 100%;
  85. position: fixed;
  86. left: 50%;
  87. transform: translateX(-50%);
  88. bottom: 60rpx;
  89. padding: $pages-padding;
  90. .footer-btn {
  91. width: 100%;
  92. height: 100rpx;
  93. background-color: $Theme-Color;
  94. text-align: center;
  95. line-height: 100rpx;
  96. color: #fff;
  97. border-radius: 10rpx;
  98. }
  99. }
  100. </style>