| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <template>
- <!-- 等待审核 -->
- <div class="pending-review">
- <div class="apply-mask" @click="emits('pendingReviewClose')"></div>
- <div class="apply-content">
- <div class="slide-line"></div>
- <div class="apply-text pf600 fs18 fc121212">等待审核</div>
- <img
- src="../../../assets/img/index/Cross-device_syncing_2_.svg"
- class="review-img"
- alt="" />
- <div class="review-desc pf500 fs14 fc333333">审核通过后,自动放币到您账户</div>
- <div class="sure-btn pf600 fs14 fcFFFFFF">保存</div>
- </div>
- </div>
- </template>
- <script setup>
- const emits = defineEmits(["pendingReviewClose"]);
- </script>
- <style lang="less" scoped>
- .pending-review {
- position: fixed;
- left: 0;
- top: 0;
- z-index: 1;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- width: 100%;
- min-height: 100vh;
- .apply-mask {
- position: fixed;
- left: 0;
- top: 0;
- z-index: -1;
- width: 100%;
- min-height: 100vh;
- background: rgba(0, 0, 0, 0.5);
- }
- .apply-content {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- width: 375px;
- height: 337px;
- background: #ffffff;
- border-radius: 24px 24px 0px 0px;
- .slide-line {
- margin-top: 12px;
- width: 32px;
- height: 4px;
- border-radius: 2px;
- opacity: 0.4;
- background: rgba(0, 0, 0, 0.5);
- }
- .apply-text {
- margin-top: 20px;
- height: 24px;
- line-height: 24px;
- letter-spacing: 0.2px;
- }
- .review-img {
- margin-top: 25px;
- width: 100px;
- height: 99px;
- }
- .review-desc {
- margin-top: 10px;
- line-height: 25px;
- letter-spacing: 0.2px;
- }
- .sure-btn {
- margin-top: 27px;
- width: 311px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- border-radius: 100px;
- background: #df384c;
- }
- }
- }
- </style>
|