goauth.vue 722 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. },
  17. onLoad() {
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. .default {
  25. text-align: center;
  26. position: fixed;
  27. left: 50%;
  28. top: 40%;
  29. transform: translate(-50%, -50%);
  30. }
  31. .default text{
  32. color: #AAAAAA;
  33. }
  34. .default image {
  35. height: 280rpx;
  36. display: inline-block;
  37. }
  38. .empty-wrap{
  39. background-color: #FFFFFF;
  40. min-height: 100vh;
  41. }
  42. </style>