await-audit.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="page-box">
  3. <view class="img-box">
  4. <image src="/static/img/login/await_audit.png" class="await-img" mode="widthFix"></image>
  5. </view>
  6. <view class="await-status text-color-333 sys-size-36 sys-weight-600">已提交</view>
  7. <view class="await-msg text-color-333 sys-size-30 sys-weight-400">请耐心等待审核</view>
  8. <view class="await-but sys-radius-100 sys-background-dominant sys-size-30 text-color-fff sys-weight-500">确认</view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {};
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. .page-box{
  20. min-height: 100vh;
  21. background-image: url("https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/app-serve/2024-4-17/gvbst5vy0m.png?imageMogr2/quality/20");
  22. background-repeat: no-repeat;
  23. background-size: 100% auto;
  24. .img-box{
  25. padding-top: 360rpx;
  26. display: flex;
  27. justify-content: center;
  28. .await-img{
  29. margin: 0 auto;
  30. width: 200rpx;
  31. height: 200rpx;
  32. }
  33. }
  34. .await-status{
  35. text-align: center;
  36. margin-top: 30rpx;
  37. }
  38. .await-msg{
  39. text-align: center;
  40. margin-top: 14rpx;
  41. }
  42. .await-but{
  43. width: 330rpx;
  44. height: 80rpx;
  45. line-height: 80rpx;
  46. margin: 48rpx auto;
  47. text-align: center;
  48. }
  49. }
  50. </style>