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.
39 lines
981 B
39 lines
981 B
import { CONSTANTS } from "@/config/constant"; |
|
|
|
import { Panel, Button, ButtonGroup, VerticalLayout, MultiSelectItem, shortcut, Widget, createItems, deepClone } from "@fui/core" |
|
|
|
|
|
@shortcut() |
|
export class PanelDemo extends Widget { |
|
static xtype = "demo.panel"; |
|
|
|
props = { baseCls: "demo-func" }; |
|
|
|
render() { |
|
const self = this; |
|
|
|
return { |
|
type: Panel.xtype, |
|
title: "title", |
|
titleButtons: [ |
|
{ |
|
type: Button.xtype, |
|
text: "操作", |
|
} |
|
], |
|
el: { |
|
type: ButtonGroup.xtype, |
|
layouts: [ |
|
{ |
|
type: VerticalLayout.xtype, |
|
} |
|
], |
|
items: createItems(deepClone(CONSTANTS.ITEMS), { |
|
type: MultiSelectItem.xtype, |
|
height: 25, |
|
}), |
|
}, |
|
}; |
|
} |
|
} |
|
|
|
|