预览
创新互联是一家集网站建设,乌拉特前企业网站建设,乌拉特前品牌网站建设,网站定制,乌拉特前网站建设报价,网络营销,网络优化,乌拉特前网站推广为一体的创新建站企业,帮助传统企业提升企业形象加强企业竞争力。可充分满足这一群体相比中小企业更为丰富、高端、多元的互联网需求。同时我们时刻保持专业、时尚、前沿,时刻以成就客户成长自我,坚持不断学习、思考、沉淀、净化自己,让我们为更多的企业打造出实用型网站。
先上一波效果图:
基本元素
首先,翻页组件(以下称“pager组件”)一般拥有的元素有:
初始化时需要的配置有:
这些可以通过vue的props来接收。
另外,pager组件本身需要有一个记录当前页的currentPage,pages数组用来容纳中间显示的页码,jumpPage绑定输入的跳转页码。
基本实现
对应的代码为:
0">- export default {
- props: {
- totalPage: { // 总页数
- type: Number,
- default: 1,
- required: true
- },
- showItems: { // 显示出来的页数,如: 1 ... 34[5]67 ... 10
- type: Number,
- default: 5
- },
- showPrev: { // 是否显示“上一页”
- type: Boolean,
- default: true
- },
- showNext: { // 是否显示“下一页”
- type: Boolean,
- default: true
- },
- showJump: { // 是否显示“跳转”
- type: Boolean,
- default: true
- },
- initPage: {
- type: Number,
- default: 1
- }
- },
- data () {
- return {
- currentPage: 0,
- pages: [],
- jumpPage: 0,
- }
- },
- created () {// 初始化时currentPage赋值
- this.currentPage = this.initPage
- }
- methods: {
- go (page) {
- if(page < 1) {
- page = 1
- }
- if(page > this.totalPage) {
- page = this.totalPage
- }
- if(page === this.currentPage) {
- return
- }
- this.currentPage = parseInt(page,10)
- this.$emit('go-page',{
- page: this.currentPage
- })
- }
- },
- watch: {
- currentPage (newVal) {
- this.jumpPage = newVal
- },
- initPage (newVal) {
- if(this.currentPage !== newVal) {
- this.currentPage = newVal
- }
- }
- }
- }
接下来就是pages数组的值如何获取到。由于pages始终是跟当前页currentPage以及配置中需要显示的showItems强相关的,那么完全可以将pages改为计算属性:
- computed: {
- pages () {
- // 根据起始页码和结束页码得到页码数组
- let getPages = (start,end) => {
- if(start <= 1 || start > end || start >= this.totalPage) {
- start = 2
- }
- if(end >= this.totalPage || end < start || end <= 1) {
- end = this.totalPage - 1
- }
- let arr = []
- for(let i = start; i <= end; i++) {
- arr.push(i)
- }
- return arr
- }
- let counts = this.showItems
- if(this.totalPage < counts + 2) {
- return getPages(2,this.totalPage)
- } else {
- if(this.currentPage <= Math.ceil(counts/2)) {
- return getPages(2,counts)
- } else if(this.currentPage >= this.totalPage - Math.floor(counts/2)) {
- return getPages(this.totalPage + 1 - counts,this.totalPage - 1)
- } else {
- let half = Math.ceil(counts/2) - 1
- let end = this.currentPage + half
- if(counts % 2 === 0) {
- end++
- }
- return getPages(this.currentPage - half,end)
- }
- }
- }
- }
功能拓展
到这里一个普通的翻页组件基本上就实现了(样式自己可以去定制)。但是很多时候(特别是一些管理后台),结合vue-router做成SPA,通常会有这样的需求:
翻到某个列表的某一页之后,点击某一项到编辑页,编辑完成后希望能够返回到跳转之前的那一页。
这个需求如果仅仅用上面的pager组件,实现起来就不是很方便。也许有人会说结合vuex可以,但是这样的话需要在state中记录下跳转前的页码。假如有很多个翻页列表,就需要记录多个,这显然并不优雅。
不过因为vue-router实现的优雅,我们要满足上面的需求也很简单:
首先props上增加mode配置,由于当mode为params时,跳转需要知道是在哪一个路由下,所以:
- mode: {
- type: String,
- default: 'event' // 'event' | 'query' | 'params'
- },
- routeName: {
- type: String
- }
然后再在实际跳转的逻辑方法go(page)里面,做点更改:
- go (page) {
- if(page < 1) {
- page = 1
- }
- if(page > this.totalPage) {
- page = this.totalPage
- }
- if(page === this.currentPage) {
- return
- }
- this.currentPage = parseInt(page,10)
- if(this.mode == 'query') {
- let query = this.$route.query
- query.page = this.currentPage
- this.$router.go({query: query})
- } else if(this.mode == 'params') {
- let params = this.$route.params
- params.page = this.currentPage
- this.$router.go({name: this.routeName,params: params})
- } else {
- this.$emit('go-page',{
- page: this.currentPage
- })
- }
- }
这样基本上就完成了一个简单且通用的翻页组件啦,接下里就是发不到仓库里供大家使用了。
本文最终实现的翻页组件已经发布,大家可以看一波源码:
vue-simple-pager
总结
总体上讲的比较浅显,希望能有帮助。
文章名称:如何通过vue实现一款简单通用的翻页组件
分享路径:http://www.gawzjz.com/qtweb/news0/205300.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联