123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view>
- <view class="z-loading">
- <view class="div">
- <img src="http://rccs.oss-cn-hangzhou.aliyuncs.com/jp_housekeeper/img/xxd_loading.gif" />
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name:"Loading",
- data() {
- return {
-
- };
- }
- }
- </script>
- <style>
- .z-loading {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgb(255, 255, 255, 0.9);
- z-index: 999;
- }
- .z-loading .div {
- top: 40%;
- position: absolute;
- left: 40%
- }
- </style>
|