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.
111 lines
2.8 KiB
111 lines
2.8 KiB
import { shortcut, Widget, createWidget } from "@/core"; |
|
import { Msg } from "@/base"; |
|
|
|
@shortcut() |
|
export class Func extends Widget { |
|
static xtype = "demo.level_tree"; |
|
|
|
props = { baseCls: "demo-func" }; |
|
|
|
render() { |
|
const tree = BI.createWidget({ |
|
type: "bi.level_tree", |
|
chooseType: 0, |
|
items: [ |
|
{ |
|
id: 1, |
|
text: "第一项", |
|
value: 1, |
|
isParent: true, |
|
}, |
|
{ |
|
id: 2, |
|
text: "第二项", |
|
value: 2, |
|
isParent: true, |
|
}, |
|
{ |
|
id: 3, |
|
text: "第三项", |
|
value: 1, |
|
isParent: true, |
|
open: true, |
|
}, |
|
{ |
|
id: 4, |
|
text: "第四项", |
|
value: 1, |
|
}, |
|
{ |
|
id: 11, |
|
pId: 1, |
|
text: "子项1", |
|
value: 11, |
|
}, |
|
{ |
|
id: 12, |
|
pId: 1, |
|
text: "子项2", |
|
value: 12, |
|
}, |
|
{ |
|
id: 13, |
|
pId: 1, |
|
text: "子项3", |
|
value: 13, |
|
}, |
|
{ |
|
id: 111, |
|
pId: 11, |
|
text: "子项1-1", |
|
value: 111, |
|
}, |
|
{ |
|
id: 21, |
|
pId: 2, |
|
text: "子项1", |
|
value: 21, |
|
}, |
|
{ |
|
id: 31, |
|
pId: 3, |
|
text: "子项1", |
|
value: 31, |
|
}, |
|
{ |
|
id: 32, |
|
pId: 3, |
|
text: "子项2", |
|
value: 32, |
|
}, |
|
{ |
|
id: 33, |
|
pId: 3, |
|
text: "子项3", |
|
value: 33, |
|
} |
|
], |
|
}); |
|
|
|
BI.createWidget({ |
|
type: "bi.vtape", |
|
element: this, |
|
items: [ |
|
{ |
|
el: tree, |
|
}, |
|
{ |
|
height: 30, |
|
el: { |
|
type: "bi.button", |
|
height: 30, |
|
text: "getValue", |
|
handler() { |
|
BI.Msg.alert("", tree.getValue()); |
|
}, |
|
}, |
|
} |
|
], |
|
}); |
|
} |
|
}
|
|
|