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,43 @@
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号 18 6140 725 49身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<view class="fui-page__hd">
<view class="fui-page__title">LoadMore</view>
<view class="fui-page__desc">LoadMore 加载更多主要使用场景如上拉加载等</view>
</view>
<view class="fui-page__bd">
<view class="fui-section__title">基本使用</view>
<fui-loadmore></fui-loadmore>
<fui-loadmore activeColor="#FFB703"></fui-loadmore>
<fui-loadmore iconColor="rgba(255, 183, 3, .2)" activeColor="#FFB703" color="#FFB703"></fui-loadmore>
<view class="fui-section__title">direction:col</view>
<fui-loadmore direction="col" text="加载中" color="#465CFF"></fui-loadmore>
<view class="fui-section__title">自定义图标</view>
<fui-loadmore src="/static/images/component/loading_gray.png" :iconWidth="36" text="加载中...">
</fui-loadmore>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
page {
font-weight: normal;
}
.fui-section__title {
margin-left: 32rpx;
}
</style>