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.
|
|
|
/**
|
|
|
|
* Created by User on 2017/3/22.
|
|
|
|
*/
|
|
|
|
Demo.CenterLayout = BI.inherit(BI.Widget, {
|
|
|
|
props: {
|
|
|
|
baseCls: "demo-center"
|
|
|
|
},
|
|
|
|
render: function () {
|
|
|
|
return {
|
|
|
|
type: "bi.center",
|
|
|
|
items: [{
|
|
|
|
type: "bi.label",
|
|
|
|
text: "其实是一个grid嵌套absolute的实现",
|
|
|
|
cls: "layout-bg1",
|
|
|
|
whiteSpace: "normal"
|
|
|
|
}, {
|
|
|
|
type: "bi.label",
|
|
|
|
text: "Center 2,为了演示label是占满整个的,用了一个whiteSpace:normal",
|
|
|
|
cls: "layout-bg2",
|
|
|
|
whiteSpace: "normal"
|
|
|
|
}, {
|
|
|
|
type: "bi.label",
|
|
|
|
text: "Center 3",
|
|
|
|
cls: "layout-bg3"
|
|
|
|
}, {
|
|
|
|
type: "bi.label",
|
|
|
|
text: "Center 4",
|
|
|
|
cls: "layout-bg5"
|
|
|
|
}],
|
|
|
|
hgap: 20,
|
|
|
|
vgap: 20
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
BI.shortcut("demo.center_layout", Demo.CenterLayout);
|