pageLoading.vue 460 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="load" v-if="status">
  3. {{$t(`正在加载中`)}}
  4. </view>
  5. </template>
  6. <script>
  7. export default{
  8. data(){
  9. return {
  10. status:false
  11. }
  12. },
  13. mounted() {
  14. this.status = uni.getStorageSync('loadStatus')
  15. uni.$once('loadClose',()=>{
  16. this.status = false
  17. })
  18. }
  19. }
  20. </script>
  21. <style lang="scss">
  22. .load{
  23. z-index: 99999;
  24. position: fixed;
  25. left: 0;
  26. top: 0;
  27. width: 100%;
  28. height: 100%;
  29. background-color: #fff;
  30. }
  31. </style>