Files
FirstUI-vue/pages/component/operate/loading/loading.vue
2023-08-17 21:28:49 +08:00

42 lines
1.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号1 8614 07 25 4 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<view class="fui-page__hd">
<view class="fui-page__title">Loading</view>
<view class="fui-page__desc">Loading 加载</view>
</view>
<view class="fui-page__bd fui-page__spacing">
<view class="fui-section__title">基础使用type=row</view>
<fui-loading type="row" :isFixed="false"></fui-loading>
<view class="fui-section__title">基础使用type=col</view>
<fui-loading :isFixed="false"></fui-loading>
<!-- 居中且显示遮罩 isFixed为true时生效-->
<!-- <fui-loading isMask mask-bg-color="rgba(0,0,0,.3)"></fui-loading> -->
<view class="fui-section__title">更换图标type=row</view>
<fui-loading type="row" :isFixed="false" srcRow="/static/images/component/loading_gray.png" text="正在加载...">
</fui-loading>
<view class="fui-section__title">更换图标type=col</view>
<fui-loading :isFixed="false" srcCol="/static/images/component/loading_white.png" text="正在加载...">
</fui-loading>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
page {
font-weight: normal;
}
</style>