loadog.vue 658 B

1234567891011121314151617181920212223242526272829303132333435
  1. <script setup>
  2. import { onMounted, ref } from "vue";
  3. const props = defineProps({
  4. loadingShow: {
  5. type: Boolean,
  6. required: true,
  7. default: false,
  8. },
  9. });
  10. </script>
  11. <template>
  12. <div class="container-loading" v-if="loadingShow">
  13. <img src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/all-loading.gif" alt="" />
  14. </div>
  15. </template>
  16. <style lang="scss" scoped>
  17. .container-loading {
  18. position: fixed;
  19. top: 0;
  20. left: 0;
  21. width: 100%;
  22. height: 100%;
  23. z-index: 10000;
  24. background-color: rgba(0, 0, 0, 0.6);
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. img {
  29. width: 270px;
  30. height: 282px;
  31. }
  32. }
  33. </style>