修复页面跳转失效的bug
parent
0b47e23e96
commit
c76a1b3264
|
@ -186,8 +186,8 @@ export default Anot.component('pager', {
|
|||
if ((elem && elem.disabled) || currPage === val) {
|
||||
return
|
||||
}
|
||||
if (elem) {
|
||||
if (val && val !== '...') {
|
||||
if (val && elem) {
|
||||
if (val !== '...') {
|
||||
let link = elem.dataset.to
|
||||
|
||||
if (link) {
|
||||
|
|
|
@ -10,15 +10,15 @@
|
|||
|
||||
.do-pager {height:auto;text-align:center;font-size:14px;color: nth($cgr, 1);
|
||||
|
||||
&.mini {line-height:35px;
|
||||
&.mini {line-height:30px;
|
||||
.button,.page {min-width:30px;height:30px}
|
||||
}
|
||||
&.medium {line-height:35px;
|
||||
.button,.page {min-width:35px;height:35px}
|
||||
}
|
||||
&.medium {line-height:40px;
|
||||
&.large {line-height:40px;
|
||||
.button,.page {min-width:40px;height:40px}
|
||||
}
|
||||
&.large {line-height:45px;
|
||||
.button,.page {min-width:45px;height:45px}
|
||||
}
|
||||
|
||||
.button,.page {display:inline-block;border:0;color: nth($cgr, 1);text-decoration:none;cursor:pointer;vertical-align:top;font-size:14px;font-weight:100;
|
||||
|
||||
|
|
Reference in New Issue