PendingReview.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <!-- 等待审核 -->
  3. <div class="pending-review">
  4. <div class="apply-mask" @click="emits('pendingReviewClose')"></div>
  5. <div class="apply-content">
  6. <div class="slide-line"></div>
  7. <div class="apply-text pf600 fs18 fc121212">等待审核</div>
  8. <img
  9. src="../../../assets/img/index/Cross-device_syncing_2_.svg"
  10. class="review-img"
  11. alt="" />
  12. <div class="review-desc pf500 fs14 fc333333">审核通过后,自动放币到您账户</div>
  13. <div class="sure-btn pf600 fs14 fcFFFFFF">保存</div>
  14. </div>
  15. </div>
  16. </template>
  17. <script setup>
  18. const emits = defineEmits(["pendingReviewClose"]);
  19. </script>
  20. <style lang="less" scoped>
  21. .pending-review {
  22. position: fixed;
  23. left: 0;
  24. top: 0;
  25. z-index: 1;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: flex-end;
  29. width: 100%;
  30. min-height: 100vh;
  31. .apply-mask {
  32. position: fixed;
  33. left: 0;
  34. top: 0;
  35. z-index: -1;
  36. width: 100%;
  37. min-height: 100vh;
  38. background: rgba(0, 0, 0, 0.5);
  39. }
  40. .apply-content {
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: flex-start;
  44. align-items: center;
  45. width: 375px;
  46. height: 337px;
  47. background: #ffffff;
  48. border-radius: 24px 24px 0px 0px;
  49. .slide-line {
  50. margin-top: 12px;
  51. width: 32px;
  52. height: 4px;
  53. border-radius: 2px;
  54. opacity: 0.4;
  55. background: rgba(0, 0, 0, 0.5);
  56. }
  57. .apply-text {
  58. margin-top: 20px;
  59. height: 24px;
  60. line-height: 24px;
  61. letter-spacing: 0.2px;
  62. }
  63. .review-img {
  64. margin-top: 25px;
  65. width: 100px;
  66. height: 99px;
  67. }
  68. .review-desc {
  69. margin-top: 10px;
  70. line-height: 25px;
  71. letter-spacing: 0.2px;
  72. }
  73. .sure-btn {
  74. margin-top: 27px;
  75. width: 311px;
  76. height: 40px;
  77. line-height: 40px;
  78. text-align: center;
  79. border-radius: 100px;
  80. background: #df384c;
  81. }
  82. }
  83. }
  84. </style>