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.

55 lines
1.5 KiB

import { shortcut, Widget, createWidget } from "@/core";
7 years ago
@shortcut()
export class Func extends Widget {
static xtype = "demo.direction_pager";
props = { baseCls: "demo-func" };
mounted() {
7 years ago
this.pager.populate();
}
7 years ago
render() {
const self = this;
createWidget({
7 years ago
type: "bi.vertical",
hgap: 200,
vgap: 50,
element: this,
items: [
{
type: "bi.direction_pager",
ref(_ref) {
self.pager = _ref;
7 years ago
},
horizontal: {
pages: false, // 总页数
curr: 1, // 初始化当前页, pages为数字时可用
7 years ago
hasPrev(v) {
return v > 1;
},
hasNext() {
return true;
},
firstPage: 1,
7 years ago
},
vertical: {
pages: false, // 总页数
curr: 1, // 初始化当前页, pages为数字时可用
hasPrev(v) {
return v > 1;
},
hasNext() {
return true;
},
firstPage: 1,
7 years ago
},
}
],
7 years ago
});
7 years ago
}
}