123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div class="loading-flag flex justify-center items-center">
- <div class="loading-content">
- <img src="../../assets/images/screen_loading.png" />
- <p>计算中,请稍等...</p>
- </div>
- </div>
- </template>
- <script setup lang="ts" name="LoadingFlag"></script>
- <style scoped lang="scss">
- .loading-flag {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 1500;
- background: rgba(0, 0, 0, 0.3);
- .loading-content {
- width: 140px;
- height: 90px;
- background: #fff;
- border-radius: 4px;
- text-align: center;
- img {
- width: 26px;
- margin-top: 16px;
- }
- p {
- color: #666;
- font-size: 14px;
- margin-top: 7px;
- }
- }
- }
- </style>
|