audit.vue 536 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="cmain">
  3. <view class="icon">&#xe638;</view>
  4. <view class="title">您的资料已经提交审核,</view>
  5. <view class="desc">请耐心等待。</view>
  6. <button class="btn">返回首页</button>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {};
  13. }
  14. };
  15. </script>
  16. <style lang="scss">
  17. .cmain {
  18. text-align: center;
  19. padding: 40px;
  20. color: $font-c;
  21. .icon {
  22. font-size: 150px;
  23. }
  24. .title {
  25. margin-bottom: 5px;
  26. }
  27. .desc {
  28. margin-top: -5px;
  29. }
  30. .btn {
  31. margin-top: 30px;
  32. }
  33. }
  34. </style>