global-loading.vue 547 B

12345678910111213141516171819202122232425
  1. <template>
  2. <u-overlay :show="show" style="background-color: rgba(255, 255, 255, 0.6);z-index: 999999;">
  3. <view class="dis f-c a-c j-c " style="height: 100%;">
  4. <u-loading-icon></u-loading-icon>
  5. <text style="color: #909399;" class="mt-1">{{ text }}</text>
  6. </view>
  7. </u-overlay>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'global-loading',
  12. props: {
  13. show: {
  14. type: Boolean,
  15. default: false
  16. },
  17. // loading提示文字,页面可自定义传入
  18. text: {
  19. type: String,
  20. default: '加载中'
  21. }
  22. }
  23. }
  24. </script>