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.
 
 
 

41 lines
1.0 KiB

import { shortcut, Widget, createWidget, random, bind } from "@/core";
@shortcut()
export class Func extends Widget {
static xtype = "demo.navigation";
props = { baseCls: "demo-func" };
_createNav(v) {
return createWidget({
type: "bi.label",
cls: `layout-bg${random(1, 8)}`,
text: `${v}`,
});
}
render() {
return {
type: "bi.navigation",
showIndex: 0,
tab: {
height: 30,
items: [
{
once: false,
text: "后退",
value: -1,
cls: "mvc-button layout-bg3",
},
{
once: false,
text: "前进",
value: 1,
cls: "mvc-button layout-bg4",
}
],
},
cardCreator: bind(this._createNav, this),
};
}
}