index.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <view class="pages-content">
  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" @click.stop="nextStep">
  23. 开始
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. data() {
  31. return {
  32. };
  33. },
  34. methods:{
  35. nextStep(){
  36. uni.navigateTo({
  37. url:'/pages/content/identification/select-type'
  38. })
  39. }
  40. }
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. .pages-content{
  45. width: 100%;
  46. min-height: 100vh;
  47. display: flex;
  48. flex-direction: column;
  49. }
  50. .content {
  51. flex: 1;
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: center;
  55. align-items: center;
  56. width: 100%;
  57. text-align: center;
  58. padding: 0 $pages-padding;
  59. .content-title {
  60. padding-bottom: 20rpx;
  61. .content-icon {
  62. font-size: 50rpx;
  63. color: $Theme-Color;
  64. margin-right: 10rpx;
  65. }
  66. .content-text{
  67. line-height: 1;
  68. padding-bottom: 0;
  69. }
  70. }
  71. .content-text {
  72. font-size: 60rpx;
  73. padding-bottom: 20rpx;
  74. }
  75. .content-list {
  76. margin-top: 20rpx;
  77. width: 100%;
  78. background-color: #e1e0e0;
  79. padding: 40rpx;
  80. border-radius: 10rpx;
  81. .content-list-item {
  82. display: flex;
  83. .item-num {
  84. width: 50rpx;
  85. height: 50rpx;
  86. background-color: #e3e3e3;
  87. border-radius: 50%;
  88. margin-right: 30rpx;
  89. text-align: center;
  90. line-height: 50rpx;
  91. font-size: 28rpx;
  92. font-weight: bold;
  93. }
  94. .item-text {
  95. line-height: 50rpx;
  96. font-size: 28rpx;
  97. }
  98. }
  99. }
  100. }
  101. .footer-info {
  102. width: 100%;
  103. position: fixed;
  104. left: 50%;
  105. transform: translateX(-50%);
  106. bottom: 60rpx;
  107. padding: $pages-padding;
  108. .footer-btn {
  109. width: 100%;
  110. height: 100rpx;
  111. background-color: $Theme-Color;
  112. text-align: center;
  113. line-height: 100rpx;
  114. color: #fff;
  115. border-radius: 10rpx;
  116. }
  117. }
  118. </style>