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.

38 lines
985 B

8 years ago
/**
* Created by User on 2017/3/22.
*/
Demo.HtapeLayout = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-htape"
},
render: function () {
return {
type: "bi.htape",
7 years ago
items: [
8 years ago
{
width: 100,
7 years ago
el: {
type: "bi.label",
text: "1",
8 years ago
cls: "layout-bg1"
}
}, {
width: 200,
7 years ago
el: {
type: "bi.label",
text: "2",
8 years ago
cls: "layout-bg2"
}
}, {
7 years ago
width: "fill",
el: {
type: "bi.label",
text: "3",
8 years ago
cls: "layout-bg3"
}
}
]
7 years ago
};
8 years ago
}
});
8 years ago
BI.shortcut("demo.htape", Demo.HtapeLayout);