
<script type="text/javascript" src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.0/vue.min.js"></script> <style> .mo-paging { display: inline-block; padding: 0; margin: 1rem 0; font-size: 0; list-style: none; user-select: none; } .mo-paging > .paging-item { display: inline; font-size: 14px; position: relative; padding: 6px 12px; line-height: 1.42857143; text-decoration: none; border: 1px solid #ccc; background-color: #fff; margin-left: -1px; cursor: pointer; color: #0275d8; } .mo-paging > .paging-item:first-child { margin-left: 0; } .mo-paging > .paging-item:hover { background-color: #f0f0f0; color: #0275d8; } .mo-paging > .paging-item.paging-item--disabled, .mo-paging > .paging-item.paging-item--more { background-color: #fff; color: #505050; } .mo-paging > .paging-item.paging-item--disabled { cursor: not-allowed; opacity: 0.75; } .mo-paging > .paging-item.paging-item--more, .mo-paging > .paging-item.paging-item--current { cursor: default; } .mo-paging > .paging-item.paging-item--current { background-color: #0275d8; color: #fff; position: relative; z-index: 1; border-color: #0275d8; } </style> <template v-if="count"> <ul> <li v-for="item in items">...</li> </ul> <my-component :page-index="currentPage" :total="count" :page-size="pageSize" @change="pageChange"> </my-component> </template>
<script type="text/javascript"> new Vue({ el:'#xx', components: { 'my-component' : { template:'<ul class="mo-paging">\n' + ' <!-- prev -->\n' + ' <li\n' + ' :class="[\'paging-item\', \'paging-item--prev\', {\'paging-item--disabled\' : index === 1}]"\n' + ' @click="prev">prev</li>\n' + ' \n' + ' <!-- first -->\n' + ' <li\n' + ' :class="[\'paging-item\', \'paging-item--first\', {\'paging-item--disabled\' : index === 1}]"\n' + ' @click="first">first</li>\n' + ' \n' + ' <li\n' + ' :class="[\'paging-item\', \'paging-item--more\']"\n' + ' v-if="showPrevMore">...</li>\n' + '\n' + ' <li\n' + ' :class="[\'paging-item\', {\'paging-item--current\' : index === pager}]"\n' + ' v-for="pager in pagers"\n' + ' @click="go(pager)">{{ pager }}</li>\n' + '\n' + ' <li\n' + ' :class="[\'paging-item\', \'paging-item--more\']"\n' + ' v-if="showNextMore">...</li>\n' + ' \n' + ' <!-- last -->\n' + ' <li\n' + ' :class="[\'paging-item\', \'paging-item--last\', {\'paging-item--disabled\' : index === pages}]"\n' + ' @click="last">last</li>\n' + '\n' + ' <!-- next -->\n' + ' <li\n' + ' :class="[\'paging-item\', \'paging-item--next\', {\'paging-item--disabled\' : index === pages}]"\n' + ' @click="next">next</li>\n' + ' </ul>', props : { //页面中的可见页码,其他的以...替代, 必须是奇数 perPages : { type : Number, default : 5 }, //当前页码 pageIndex : { type : Number, default : 1 }, //每页显示条数 pageSize : { type : Number, default : 10 }, //总记录数 total : { type : Number, default : 1 }, }, methods : { prev(){ if (this.index > 1) { this.go(this.index - 1) } }, next(){ if (this.index < this.pages) { this.go(this.index + 1) } }, first(){ if (this.index !== 1) { this.go(1) } }, last(){ if (this.index != this.pages) { this.go(this.pages) } }, go (page) { if (this.index !== page) { this.index = page //父组件通过change方法来接受当前的页码 this.$emit('change', this.index) } } }, computed : { //计算总页码 pages(){ return Math.ceil(this.size / this.limit) }, //计算页码,当count等变化时自动计算 pagers () { const array = [] const perPages = this.perPages const pageCount = this.pages let current = this.index const _offset = (perPages - 1) / 2 const offset = { start : current - _offset, end : current + _offset } //-1, 3 if (offset.start < 1) { offset.end = offset.end + (1 - offset.start) offset.start = 1 } if (offset.end > pageCount) { offset.start = offset.start - (offset.end - pageCount) offset.end = pageCount } if (offset.start < 1) offset.start = 1 this.showPrevMore = (offset.start > 1) this.showNextMore = (offset.end < pageCount) for (let i = offset.start; i <= offset.end; i++) { array.push(i) } return array } }, data () { return { index : this.pageIndex, //当前页码 limit : this.pageSize, //每页显示条数 size : this.total || 1, //总记录数 showPrevMore : false, showNextMore : false } }, watch : { pageIndex(val) { this.index = val || 1 }, pageSize(val) { this.limit = val || 10 }, total(val) { this.size = val || 1 } } } }, data:{ pageSize : 10 , //每页显示20条数据 currentPage : 1, //当前页码 count : 30, //总记录数 items : [] }, mounted() { $.ajax({ type:'post', url:'/api/admin/info', success:function (data){ console.log(data) } }) }, methods: { //从page组件传递过来的当前page pageChange (page) { // this.currentPage = page // this.getList() } } }) </script>