fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
Demo.Func = BI.inherit(BI.Widget, {
|
|
|
|
props: {
|
|
|
|
baseCls: "demo-func"
|
|
|
|
},
|
|
|
|
render: function () {
|
|
|
|
return {
|
|
|
|
type: "bi.vertical",
|
|
|
|
items: [{
|
|
|
|
type: "bi.label",
|
|
|
|
height: 30,
|
|
|
|
text: "默认的分页"
|
|
|
|
}, {
|
|
|
|
type: "bi.pager",
|
|
|
|
height: 50,
|
|
|
|
pages: 18,
|
|
|
|
groups: 5,
|
|
|
|
curr: 6,
|
|
|
|
first: "首页",
|
|
|
|
last: "尾页"
|
|
|
|
}, {
|
|
|
|
type: "bi.label",
|
|
|
|
height: 30,
|
|
|
|
text: "显示上一页、下一页、首页、尾页"
|
|
|
|
}, {
|
|
|
|
type: "bi.pager",
|
|
|
|
dynamicShow: false,
|
|
|
|
height: 50,
|
|
|
|
pages: 18,
|
|
|
|
groups: 5,
|
|
|
|
curr: 1,
|
|
|
|
first: "首页>",
|
|
|
|
last: "<尾页"
|
|
|
|
}, {
|
|
|
|
type: "bi.label",
|
|
|
|
height: 30,
|
|
|
|
text: "显示上一页、下一页"
|
|
|
|
}, {
|
|
|
|
type: "bi.pager",
|
|
|
|
dynamicShow: false,
|
|
|
|
dynamicShowFirstLast: true,
|
|
|
|
height: 50,
|
|
|
|
pages: 18,
|
|
|
|
groups: 5,
|
|
|
|
curr: 1,
|
|
|
|
first: "首页>",
|
|
|
|
last: "<尾页"
|
|
|
|
}, {
|
|
|
|
type: "bi.label",
|
|
|
|
height: 30,
|
|
|
|
text: "自定义上一页、下一页"
|
|
|
|
}, {
|
|
|
|
type: "bi.pager",
|
|
|
|
dynamicShow: false,
|
|
|
|
height: 50,
|
|
|
|
pages: 18,
|
|
|
|
groups: 5,
|
|
|
|
curr: 6,
|
|
|
|
prev: {
|
|
|
|
type: "bi.button",
|
|
|
|
cls: "",
|
|
|
|
text: "上一页",
|
|
|
|
value: "prev",
|
|
|
|
once: false,
|
|
|
|
height: 30,
|
|
|
|
handler: function () {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
next: {
|
|
|
|
type: "bi.button",
|
|
|
|
cls: "",
|
|
|
|
text: "下一页",
|
|
|
|
value: "next",
|
|
|
|
once: false,
|
|
|
|
handler: function () {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
type: "bi.label",
|
|
|
|
height: 30,
|
|
|
|
text: "不知道总页数的情况(测试条件 1<=page<=3)"
|
|
|
|
}, {
|
|
|
|
type: "bi.pager",
|
|
|
|
dynamicShow: false,
|
|
|
|
height: 50,
|
|
|
|
pages: false,
|
|
|
|
curr: 1,
|
|
|
|
prev: {
|
|
|
|
type: "bi.button",
|
|
|
|
cls: "",
|
|
|
|
text: "上一页",
|
|
|
|
value: "prev",
|
|
|
|
once: false,
|
|
|
|
height: 30,
|
|
|
|
handler: function () {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
next: {
|
|
|
|
type: "bi.button",
|
|
|
|
cls: "",
|
|
|
|
text: "下一页",
|
|
|
|
value: "next",
|
|
|
|
once: false,
|
|
|
|
handler: function () {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
hasPrev: function (v) {
|
|
|
|
return v > 1;
|
|
|
|
},
|
|
|
|
hasNext: function (v) {
|
|
|
|
return v < 3;
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
BI.shortcut("demo.pager", Demo.Func);
|