Browse Source

Merge pull request #1083 in VISUAL/fineui from ~GUYI/fineui:master to master

* commit '09931f01dfdb479fade8fe56506c0a2ab2ec4dc8':
  BI-49108 fix:统一代码格式
  BI-49108 fix:修复代码问题
  BI-49108 fix:修复图标样式错误的问题
  BI-49108 fix:修复数据准备部分翻页图标样式不对的问题
es6
Guyi 5 years ago
parent
commit
4767bd88ad
  1. 12
      src/case/pager/pager.all.count.js

12
src/case/pager/pager.all.count.js

@ -54,7 +54,7 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
warningTitle: BI.i18nText("BI-Current_Is_First_Page"),
height: 22,
width: 22,
cls: "bi-border all-pager-prev" + pagerIconCls.preCls
cls: "bi-border bi-border-radius all-pager-prev bi-list-item-select2 " + pagerIconCls.preCls
},
next: {
type: "bi.icon_button",
@ -63,7 +63,7 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
warningTitle: BI.i18nText("BI-Current_Is_Last_Page"),
height: 22,
width: 22,
cls: "bi-border all-pager-next" + pagerIconCls.nextCls
cls: "bi-border bi-border-radius all-pager-next bi-list-item-select2 " + pagerIconCls.nextCls
},
hasPrev: o.hasPrev,
@ -135,14 +135,14 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
switch (o.pagerDirection) {
case "horizontal":
return {
preCls: " row-pre-page-h-font ",
nextCls: " row-next-page-h-font "
preCls: "row-pre-page-h-font ",
nextCls: "row-next-page-h-font "
};
case "vertical":
default:
return {
preCls: " column-pre-page-h-font ",
nextCls: " column-next-page-h-font "
preCls: "column-pre-page-h-font ",
nextCls: "column-next-page-h-font "
};
}
},

Loading…
Cancel
Save