| 12345678910111213141516171819202122232425 |
- <template>
- <div class="loading">
- <img src="/images/all/loading.gif" alt="">
- </div>
- </template>
- <style lang="scss" scoped>
- .loading {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- margin: 0 auto;
- z-index: 1000;
- width: 100%;
- height: 100%;
- text-align: center;
- background: transparent;
- >img {
- position: relative;
- top: 40%;
- width: 64px;
- height: 64px;
- }
- }
- </style>
|