first commit
This commit is contained in:
1
金壶/appV1/common/mixin/.pydio
Normal file
1
金壶/appV1/common/mixin/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
9c4546bd-b152-46e4-8819-cf723427bd20
|
||||
11
金壶/appV1/common/mixin/loading-plus.vue
Normal file
11
金壶/appV1/common/mixin/loading-plus.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<view class="position-fixed top-0 left-0 right-0 bottom-0 bg-white font-md d-flex a-center j-center main-text-color" style="z-index: 10000;">
|
||||
加载中...
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
14
金壶/appV1/common/mixin/loading.js
Normal file
14
金壶/appV1/common/mixin/loading.js
Normal file
@@ -0,0 +1,14 @@
|
||||
export default {
|
||||
data(){
|
||||
return {
|
||||
beforeReady:true,
|
||||
}
|
||||
},
|
||||
onReady() {
|
||||
this.$nextTick(()=>{
|
||||
setTimeout(()=>{
|
||||
this.beforeReady = false
|
||||
},500)
|
||||
})
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user