Loading.vue 531 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view>
  3. <view class="z-loading">
  4. <view class="div">
  5. <img src="http://rccs.oss-cn-hangzhou.aliyuncs.com/jp_housekeeper/img/xxd_loading.gif" />
  6. </view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. name:"Loading",
  13. data() {
  14. return {
  15. };
  16. }
  17. }
  18. </script>
  19. <style>
  20. .z-loading {
  21. position: fixed;
  22. top: 0;
  23. left: 0;
  24. width: 100%;
  25. height: 100%;
  26. background: rgb(255, 255, 255, 0.9);
  27. z-index: 999;
  28. }
  29. .z-loading .div {
  30. top: 40%;
  31. position: absolute;
  32. left: 40%
  33. }
  34. </style>