目录面板详细信息编辑拓展额外项
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.
 

44 lines
844 B

!(function() {
var Demo = BI.inherit(BI.Widget, {
props: {
height: 600
},
_store: function() {
return BI.Models.getModel("dec.model.demo");
},
render: function() {
return {
type: "bi.vtape",
items: [
{
el: {
type: "bi.label",
textAlign: "left",
hgap: 10,
text: "权限详情"
},
height: 30
},
{
el: {
type: "dec.authority.quick.config.pane"
}
}
]
};
},
getValue: function() {
// 额外组件如果无需返回值,返回空对象
return {};
},
populate: function(cardInfo) {
this.store.changeEntityInfo(cardInfo);
}
});
BI.shortcut("dec.demo", Demo);
})();