audit-loading.vue 593 B

123456789101112131415161718192021222324252627282930313233
  1. <template functional>
  2. <div :class="$style.loading">
  3. <a-spin tip="正在导出请稍等……" size="large" />
  4. </div>
  5. </template>
  6. <script>
  7. import { Spin } from 'ant-design-vue'
  8. export default {
  9. name: 'AuditLoading',
  10. components: { 'a-spin': Spin },
  11. }
  12. </script>
  13. <style lang="scss" module>
  14. @use '@/common/design' as *;
  15. .loading {
  16. position: relative;
  17. height: 100%;
  18. :global .ant-spin {
  19. position: absolute;
  20. top: 50%;
  21. left: 0;
  22. width: 100%;
  23. margin-top: -25px;
  24. .ant-spin-text {
  25. /* stylelint-disable-next-line */
  26. color: #000;
  27. }
  28. }
  29. }
  30. </style>