基于Vue如何封装分页组件

网友投稿 231 2023-06-24


基于Vue如何封装分页组件

使用vue做双向绑定的时候,可能经常会用到分页功能

接下来我们来封装一个分页组件

先定义样式文件 pagination.css

ul, li {

margin: 0px;

padding: 0px;

}

.page-bar {

-webkit-touch-callout: none;

-webkit-user-select: none;

-khtml-user-select: none;

-moz-user-select: none;

-ms-user-select: none;

user-select: none;

}

.page-button-disabled {

color:#ddd !important;

}

.page-bar li {

list-style: none;

display: inline-block;

}

.page-bar li:first-child > a {

margin-left: 0px;

}

.page-bar a {

border: 1px solid #ddd;

text-decoration: none;

position: relative;

float: left;

padding: 6px 12px;

margin-left: -1px;

line-height: 1.42857143;

color: #337ab7;

cursor: pointer;

}

.page-bar a:hover {

background-color: #eee;

}

.page-bar .active a {

color: #fff;

cursor: default;

background-color: #337ab7;

border-color: #337ab7;

}

.page-bar i {

font-style: normal;

color: #d44950;

margin: 0px 4px;

font-size: 12px;

}

js文件 pagination.js

(function (vue) {

// html模板信息

var template = '

{{ index < 1 ? "..." : index }} \

var pagination = vue.extend({

template: template,

props: ['cur', 'all'],

computed: {

indexs: function () {

var left = 1

var right = this.all

var ar = []

if (this.all >= 11) {

if (this.cur > 5 && this.cur < this.all - 4) {

left = this.cur - 5

right = this.cur + 4

} else {

if (this.cur <= 5) {

left = 1

right = 10

} else {

right = this.all

left = this.all - 9

}

}

}

while (left <= right) {

ar.push(left)

left++

}

if (ar[0] > 1) {

ar[0] = 1;

ar[1] = -1;

}

if (ar[ar.length - 1] < this.all) {

ar[ar.length - 1] = this.all;

ar[ar.length - 2] = 0;

}

return ar

}

},

methods: {

// 页码点击事件

btnClick: function (data) {

if (data < 1) return;

if (data != this.cur) {

this.cur = data

this.$dispatch('btn-click', data)

}

},

// 下一页

nextPage: function (data) {

if (this.cur >= this.all) return;

this.btnClick(this.cur + 1);

},

// 上一页

prvePage: function (data) {

if (this.cur <= 1) return;

this.btnClick(this.cur - 1);

},

// 设置按钮禁用样式

setButtonClass: function (isNextButton) {

if (isNextButton) {

return this.cur >= this.all ? "page-button-disabled" : ""

}

else {

return this.cur <= 1 ? "page-button-disabled" : ""

}

}

}

})

vue.Pagination = pagination

})(Vue)

pagination分页组件就封装好了,需要使用的时候,引入以上两个文件即可

接下来我们测试下效果

{{msg}}

最终效果

页码切换事件在listen中处理即可

点击此处下载源码:源码下载地址

以上所述是给大家介绍的基于Vue如何封装分页组件,希望对大家有所帮助,如果大家有任何疑问请给我留言,会及时回复大家的。在此也非常感谢大家对我们网站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:九江高三复读班排名,九江高考复读机构有哪些
下一篇:基于java使用JavaMail发送邮件
相关文章

 发表评论

暂时没有评论,来抢沙发吧~