Authentication.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <div class="main">
  3. <!-- <div class="progress">
  4. <el-steps :active="3" align-center>
  5. <el-step title="注册"></el-step>
  6. <el-step title="个人认证"></el-step>
  7. <el-step title="资料审核"></el-step>
  8. <el-step title="完成"></el-step>
  9. </el-steps>
  10. </div> -->
  11. <!-- <div class="box">
  12. <div></div>
  13. <div class="title">个人认证</div>
  14. <img @click="all('/Home')" src="../assets/icon/close@3x.png" alt="" />
  15. </div> -->
  16. <div class="top">
  17. <img src="../assets/login_img_shenhezhong@3x.png" alt="" />
  18. <h3>提交成功</h3>
  19. <p>个人申请认证提交成功,请等待系统审核</p>
  20. <div class="btn">
  21. <el-button type="primary" @click="all('/Home')">返回</el-button>
  22. </div>
  23. </div>
  24. </div>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {};
  30. }
  31. };
  32. </script>
  33. <style lang="less" scoped>
  34. /deep/ .el-button {
  35. width: 110px;
  36. height: 36px;
  37. line-height: 6px;
  38. border-radius: 4px;
  39. margin: 50px 10px 0 65px;
  40. }
  41. /deep/ .el-steps {
  42. width: 800px;
  43. margin: auto;
  44. margin-top: 30px;
  45. }
  46. /deep/ .el-step__title.is-finish {
  47. color: #ffffff;
  48. }
  49. /deep/ .el-step__title.is-process {
  50. color: #cccccc;
  51. font-weight: 400 !important;
  52. }
  53. /deep/ .el-step__head.is-finish {
  54. border-color: #ffffff;
  55. color: #00684f;
  56. }
  57. /deep/.el-step:nth-child(4) {
  58. .el-step__icon {
  59. background: #9ec8be !important;
  60. color: #ffffff;
  61. border: 0;
  62. }
  63. }
  64. .main .appContainer {
  65. width: 100%;
  66. }
  67. .main {
  68. background: #ffffff !important;
  69. padding-bottom: 50px;
  70. .progress {
  71. height: 120px;
  72. background: #00684f;
  73. margin: -57px 0 50px 0 !important;
  74. }
  75. .box {
  76. width: 900px;
  77. height: 60px;
  78. .flex();
  79. background: linear-gradient(to right, #ffffff 0%, rgba(520, 226, 200, 0.2) 50%, #ffffff 100%);
  80. justify-content: space-between;
  81. box-shadow: -2px 0px 0px 0px #0092B1;
  82. margin: auto;
  83. .title {
  84. font-weight: 500;
  85. color: #0092B1;
  86. font-size: 16px;
  87. }
  88. img {
  89. width: 24px;
  90. height: 24px;
  91. z-index: 1;
  92. }
  93. }
  94. .top {
  95. margin: auto;
  96. img {
  97. width: 120px;
  98. height: 120px;
  99. padding-left: 58px;
  100. }
  101. h3 {
  102. font-size: 18px;
  103. font-weight: bold;
  104. color: #000000;
  105. line-height: 28px;
  106. margin: 24px 0 8px;
  107. padding-left: 83px;
  108. }
  109. p {
  110. font-size: 14px;
  111. font-weight: 400;
  112. color: #939599;
  113. line-height: 24px;
  114. }
  115. }
  116. }
  117. </style>