初始上传
This commit is contained in:
34
addon/cashier/source/os/components/qiun-loading/qiun-loading.vue
Executable file
34
addon/cashier/source/os/components/qiun-loading/qiun-loading.vue
Executable file
@@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<view>
|
||||
<Loading1 v-if="loadingType==1" />
|
||||
<Loading2 v-if="loadingType==2" />
|
||||
<Loading3 v-if="loadingType==3" />
|
||||
<Loading4 v-if="loadingType==4" />
|
||||
<Loading5 v-if="loadingType==5" />
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Loading1 from "./loading1.vue";
|
||||
import Loading2 from "./loading2.vue";
|
||||
import Loading3 from "./loading3.vue";
|
||||
import Loading4 from "./loading4.vue";
|
||||
import Loading5 from "./loading5.vue";
|
||||
|
||||
export default {
|
||||
components: {Loading1, Loading2, Loading3, Loading4, Loading5},
|
||||
name: 'qiun-loading',
|
||||
props: {
|
||||
loadingType: {
|
||||
type: Number,
|
||||
default: 2
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
Reference in New Issue
Block a user