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.

47 lines
1.1 KiB

import { shortcut, Widget, createWidget } from "@/core";
8 years ago
@shortcut()
export class VerticalAdaptLayout extends Widget {
static xtype = "demo.vertical_adapt";
props = { baseCls: "demo-vertical-adapt" };
_createLayout() {
return createWidget({
8 years ago
type: "bi.vertical_adapt",
vgap: 10,
items: [
{
type: "bi.label",
text: "垂直居中",
cls: "layout-bg1",
width: 300,
height: 30,
},
{
type: "bi.label",
text: "垂直居中",
cls: "layout-bg2",
width: 300,
height: 30,
}
],
7 years ago
});
}
render() {
8 years ago
return {
type: "bi.grid",
columns: 2,
rows: 1,
items: [
{
column: 0,
row: 0,
el: this._createLayout(),
}
],
7 years ago
};
8 years ago
}
}