vue仿element实现分页器效果
程序员文章站
2022-04-10 18:39:38
1 .起因
今日看完element中分页器的源码实现,比较简单,遂自己按着理解实现了一个简单的分页器,记录下来,以便日后温习.
2.实现难点
分页器的实现难点主要是什...
1 .起因
今日看完element中分页器的源码实现,比较简单,遂自己按着理解实现了一个简单的分页器,记录下来,以便日后温习.
2.实现难点
分页器的实现难点主要是什么时候显示分页器的省略, 我的思路是: 规定一个值foldpage, 意为当前最多显示的标签数,当总页数超过即显示省略.省略分为左边省略(folder1)和右边省略(folder2),布局代码如下:
<div class="pagination" @click="pageclick"> <button class="pre">上一页</button> <ul class="pages"> <li :class="['first', { 'active' : current == 1 }]" v-if="total"> 1 </li> <li :class="[ testleft,goback]" v-show="showpremore" @mouseenter="testleft='more-left'" @mouseleave="testleft='more'"></li> <li :class="['page-item', { 'active' : current == item }]" v-for="item in $pages"> {{ item }} </li> <li :class="[ testright,gogo]" v-show="shownextmore" @mouseenter="testright='more-right'" @mouseleave="testright='more'"></li> <li :class="['last', { 'active' : current == $last }]" v-if="total"> {{ $last }} </li> </ul> <button class="next">下一页</button> </div>
$pages是一个计算属性,用于动态生成中间的页码,以及控制folder1和folder2的显示,代码如下:
computed:{ // 中间页数组 $pages(){ const foldpage = this.foldpage const current = number(this.current) const halffoldpage = math.floor((foldpage-2)/2) if (this.$last > foldpage){ if (current - halffoldpage > 2){ this.showpremore = true }else { this.showpremore = false } if (current + halffoldpage < this.$last){ this.shownextmore = true }else { this.shownextmore = false } } let array = [] // folder1显示 if (this.shownextmore && !this.showpremore){ for(let i = 2; i < foldpage; i++){ array.push(i) } // folder1 和 folder2都显示 }else if ( this.showpremore && this.shownextmore ){ for(let i = current - halffoldpage; i <= current + halffoldpage; i++ ){ array.push(i) } // folder2显示 }else if (!this.shownextmore && this.showpremore){ // 当folder2显示的时候,页码不能大于$last,需要往前多显示差额 let dis = current + halffoldpage - this.$last + 1; for(let i = current - halffoldpage - dis ; i < this.$last; i++){ array.push(i) } // 都不显示 }else { for(let i = 2; i < this.$last; i++){ array.push(i) } } return array }, // 总页数 $last(){ return math.ceil(this.total/this.size) } }
所有的点击都用一个函数处理, 根据e.target判断点击的目标.从而做出相应的逻辑:
methods:{ pageclick(e){ let newpage = number(e.target.textcontent) this.current = number(this.current); if (!isnan(newpage) && newpage){ this.current = newpage }else { // 下一页 if (e.target.classname.indexof('next') != -1){ if (this.current == this.$last){ return; } this.current ++ } // 上一页 else if (e.target.classname.indexof('pre') != -1){ if (this.current == 1){ return } this.current -- } // 省略向左 else if (e.target.classname.indexof('left') != -1){ this.current -= this.foldpage - 2 if (this.current <= 1){ this.current = 1 return } } // 省略向右 else if(e.target.classname.indexof('right') != -1){ this.current += this.foldpage - 2 if (this.current >= this.$last){ this.current = this.$last return } } } } },
3.总结
pagination组件在element中算是一个很简单的组件,静下心来看不是很复杂,理解其思路以后可以自己尝试去写出来,细节可以无需在意.
总结
以上所述是小编给大家介绍的vue仿element实现分页器效果,希望对大家有所帮助
上一篇: 数据结构初探(一)栈与栈的应用
下一篇: C++ 保留有效小数 保留有效数字
推荐阅读
-
PHP实现仿Google分页效果的分页函数
-
vue项目中仿element-ui弹框效果的实例代码
-
Vue基于vuex、axios拦截器实现loading效果及axios的安装配置
-
vue2.0 使用element-ui里的upload组件实现图片预览效果方法
-
PHP实现仿Google分页效果的分页函数
-
vue项目中仿element-ui弹框效果的实例代码
-
vue实现前台列表数据过滤搜索、分页效果
-
VUE+Element UI实现简单的表格行内编辑效果的示例的代码
-
WinForm实现仿视频播放器左下角滚动新闻效果的方法
-
Vue基于vuex、axios拦截器实现loading效果及axios的安装配置