index.vue 544 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="loading">
  3. <loading/>
  4. <p>正在设置邮箱,请稍后......</p>
  5. </div>
  6. </template>
  7. <script>
  8. import Loading from '~components/common/loading/Loading.vue'
  9. export default {
  10. name: 'logout',
  11. layout: 'mobile',
  12. components: {
  13. Loading
  14. }
  15. }
  16. </script>
  17. <style type="text/scss" lang="scss" scoped>
  18. .loading{
  19. p{
  20. position: fixed;
  21. left: 0;
  22. right:0;
  23. top: 54%;
  24. z-index: 1000;
  25. text-align: center;
  26. font-size: 16px;
  27. color:#333;
  28. }
  29. }
  30. </style>