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.
|
|
|
import { shortcut, Widget, createWidget, deepClone } from "@/core";
|
|
|
|
import { Msg } from "@/base";
|
|
|
|
|
|
|
|
@shortcut()
|
|
|
|
export class SingleLevelTree extends Widget {
|
|
|
|
static xtype = "demo.single_level_tree";
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const self = this;
|
|
|
|
const tree = createWidget({
|
|
|
|
type: "bi.single_level_tree",
|
|
|
|
items: deepClone(Demo.CONSTANTS.LEVELTREE),
|
|
|
|
value: "11",
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
type: "bi.vtape",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
el: tree,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
el: {
|
|
|
|
type: "bi.button",
|
|
|
|
height: 25,
|
|
|
|
text: "getValue",
|
|
|
|
handler() {
|
|
|
|
Msg.alert("", JSON.stringify(tree.getValue()));
|
|
|
|
},
|
|
|
|
},
|
|
|
|
height: 25,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
el: {
|
|
|
|
type: "bi.button",
|
|
|
|
height: 25,
|
|
|
|
text: "setValue (第二级文件1)",
|
|
|
|
handler() {
|
|
|
|
tree.setValue(["2"]);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
height: 25,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
width: 500,
|
|
|
|
hgap: 300,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|