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

43 lines
1.2 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授权予新疆天衡创新研究院有限公司手机号 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>