| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="loading">
- <loading/>
- <p>正在设置邮箱,请稍后......</p>
- </div>
- </template>
- <script>
- import Loading from '~components/common/loading/Loading.vue'
- export default {
- name: 'logout',
- layout: 'mobile',
- components: {
- Loading
- }
- }
- </script>
- <style type="text/scss" lang="scss" scoped>
- .loading{
- p{
- position: fixed;
- left: 0;
- right:0;
- top: 54%;
- z-index: 1000;
- text-align: center;
- font-size: 16px;
- color:#333;
- }
- }
- </style>
|