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

81 lines
2.5 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 0 7 2549身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<view class="fui-page__hd">
<view class="fui-page__title">Pagination</view>
<view class="fui-page__desc">Pagination 分页器当数据量过多时使用分页分解数据</view>
</view>
<view class="fui-page__bd fui-page__spacing">
<view class="fui-section__title">基础使用</view>
<fui-pagination :total="100" @change="change"></fui-pagination>
<view class="fui-section__title">样式调整</view>
<fui-pagination :total="100" color="#FFB703" background="transparent"
currentColor="#FFB703"></fui-pagination>
<view class="fui-section__title">自定义按钮内容</view>
<fui-pagination :total="100" custom background="transparent">
<template v-slot:prev>
<fui-icon name="arrowleft"></fui-icon>
</template>
<template v-slot:next>
<fui-icon name="arrowright"></fui-icon>
</template>
</fui-pagination>
<view class="fui-section__title">页码展开</view>
<fui-pagination :total="1000" :pageType="2"></fui-pagination>
<view class="fui-section__title">页码展开/调整样式</view>
<view class="fui-pageno__wrap">
<fui-pagination :total="1000" custom :pageType="2" :width="62" background="#FFB703"
pageBgColor="rgba(255, 183, 3, .1)" activeBgColor="#FFB703">
<template v-slot:prev>
<fui-icon :size="40" name="arrowleft" color="#fff"></fui-icon>
</template>
<template v-slot:next>
<fui-icon :size="40" name="arrowright" color="#fff"></fui-icon>
</template>
</fui-pagination>
</view>
<view class="fui-section__title">页码展开/按钮宽度设为60</view>
<fui-pagination :total="1000" custom :pageType="2" :width="60" background="#09BE4F"
pageBgColor="rgba(9, 190, 79, .05)" activeBgColor="#09BE4F">
<template v-slot:prev>
<fui-icon :size="40" name="arrowleft" color="#fff"></fui-icon>
</template>
<template v-slot:next>
<fui-icon :size="40" name="arrowright" color="#fff"></fui-icon>
</template>
</fui-pagination>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
change(e) {
console.log(e)
}
}
}
</script>
<style>
page {
font-weight: normal;
}
.fui-wrap {
padding-bottom: 96rpx;
}
.fui-pageno__wrap {
width: 100%;
padding: 0 64rpx;
box-sizing: border-box;
}
</style>