feat: 首次提交

This commit is contained in:
peerless_hero
2023-08-17 21:28:49 +08:00
parent 36f80fb971
commit ec1e5e16cd
571 changed files with 95322 additions and 0 deletions

View File

@ -0,0 +1,42 @@
<!--本文件由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>