123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <template>
- <view class="uni-pagination">
- <view class="uni-pagination__btns">
- <view :class="['uni-pagination__btn',{'uni-pagination--disabled':currentIndex === 1}]" :hover-class="currentIndex === 1 ? '' : 'uni-pagination--hover'" :hover-start-time="20" :hover-stay-time="70" @click="clickLeft">
- <template v-if="showIcon">
- <uni-icon color="#000" size="20" type="arrowleft" />
- </template>
- <template v-else>
- {{ prevText }}
- </template>
- </view>
- <view :class="['uni-pagination__btn',{'uni-pagination--disabled':currentIndex === maxPage}]" :hover-class="currentIndex === maxPage ? '' : 'uni-pagination--hover'" :hover-start-time="20" :hover-stay-time="70" @click="clickRight">
- <template v-if="showIcon">
- <uni-icon color="#000" size="20" type="arrowright" />
- </template>
- <template v-else>
- {{ nextText }}
- </template>
- </view>
- </view>
- <view class="uni-pagination__num">
- <text class="uni-pagination__num-current">{{ currentIndex }}</text>/{{ maxPage }}
- </view>
- </view>
- </template>
- <script>
- import uniIcon from '../uni-icon/uni-icon.vue'
- export default {
- name: 'UniPagination',
- components: {
- uniIcon
- },
- props: {
- prevText: {
- type: String,
- default: '上一页'
- },
- nextText: {
- type: String,
- default: '下一页'
- },
- current: {
- type: [Number, String],
- default: 1
- },
- total: { // 数据总量
- type: [Number, String],
- default: 0
- },
- pageSize: { // 每页数据量
- type: [Number, String],
- default: 10
- },
- showIcon: { // 是否以 icon 形式展示按钮
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- currentIndex: 1
- }
- },
- computed: {
- maxPage() {
- let maxPage = 1
- let total = Number(this.total)
- let pageSize = Number(this.pageSize)
- if (total && pageSize) {
- maxPage = Math.ceil(total / pageSize)
- }
- return maxPage
- }
- },
- watch: {
- current(val) {
- this.currentIndex = +val
- }
- },
- created() {
- this.currentIndex = +this.current
- },
- methods: {
- clickLeft() {
- if (Number(this.currentIndex) === 1) {
- return
- }
- this.currentIndex -= 1
- this.change('prev')
- },
- clickRight() {
- if (Number(this.currentIndex) === this.maxPage) {
- return
- }
- this.currentIndex += 1
- this.change('next')
- },
- change(e) {
- this.$emit('change', {
- type: e,
- current: this.currentIndex
- })
- }
- }
- }
- </script>
- <style>
- @charset "UTF-8";
- .uni-pagination {
- width: 100%;
- box-sizing: border-box;
- padding: 0 40upx;
- position: relative;
- overflow: hidden;
- display: flex;
- flex-direction: row
- }
- .uni-pagination__btns {
- flex: 1;
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex-direction: row
- }
- .uni-pagination__btn {
- width: 120upx;
- height: 60upx;
- padding: 0 16upx;
- line-height: 60upx;
- font-size: 28upx;
- box-sizing: border-box;
- position: relative;
- background-color: #f8f8f8;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center
- }
- .uni-pagination__btn:after {
- content: "";
- width: 200%;
- height: 200%;
- position: absolute;
- top: 0;
- left: 0;
- border: 1px solid #c8c7cc;
- transform: scale(.5);
- transform-origin: 0 0;
- box-sizing: border-box;
- border-radius: 12upx
- }
- .uni-pagination__num {
- width: 100upx;
- height: 60upx;
- line-height: 60upx;
- font-size: 28upx;
- color: #333;
- position: absolute;
- left: 50%;
- top: 0;
- transform: translateX(-50%)
- }
- .uni-pagination__num-current {
- color: #007aff
- }
- .uni-pagination--disabled {
- opacity: .3
- }
- .uni-pagination--hover {
- color: rgba(0, 0, 0, .6);
- background-color: #f1f1f1
- }
- </style>
|