forked from fanruan/fineui
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.
30 lines
731 B
30 lines
731 B
import { shortcut, Widget, createWidget } from "@/core"; |
|
|
|
@shortcut() |
|
export class Func extends Widget { |
|
static xtype = "demo.all_count_pager"; |
|
|
|
props = { baseCls: "demo-func" }; |
|
|
|
render() { |
|
createWidget({ |
|
type: "bi.vertical", |
|
hgap: 200, |
|
vgap: 50, |
|
element: this, |
|
items: [ |
|
{ |
|
type: "bi.label", |
|
height: 30, |
|
text: " (测试条件:总页数为3)", |
|
}, |
|
{ |
|
type: "bi.all_count_pager", |
|
pages: 3, |
|
curr: 1, |
|
count: 1000, |
|
} |
|
], |
|
}); |
|
} |
|
}
|
|
|