goauth.vue 898 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view style="background-color: #fff;min-height: 100vh;">
  3. <view class="default">
  4. <image src="/static/common/empty.png" mode="heightFix"></image>
  5. <view style="margin-top: 20rpx;">
  6. <text>您的信息正在审核中...</text>
  7. </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {}
  15. },
  16. onLoad() {
  17. },
  18. methods: {}
  19. }
  20. </script>
  21. <style lang="scss">
  22. .default {
  23. text-align: center;
  24. position: fixed;
  25. left: 50%;
  26. top: 40%;
  27. transform: translate(-50%, -50%);
  28. }
  29. .default text {
  30. color: #AAAAAA;
  31. }
  32. .default image {
  33. height: 280 rpx;
  34. display: inline-block;
  35. }
  36. .empty-wrap {
  37. background-color: #FFFFFF;
  38. min-height: 100vh;
  39. }
  40. </style>