提交 ee10f192 编写于 作者: tony001's avatar tony001

update:更新

上级 7a55f0ac
...@@ -450,9 +450,15 @@ export class PanelDetailModel { ...@@ -450,9 +450,15 @@ export class PanelDetailModel {
Object.assign(boxStyle, { 'flex-grow': 1, 'min-width': `${(100 / 12)}%`, 'height': '100%' }); Object.assign(boxStyle, { 'flex-grow': 1, 'min-width': `${(100 / 12)}%`, 'height': '100%' });
} }
} }
const boxSizeStyle: any = this.getBoxSizeStyle(); if (this.parentName && this.panel) {
if (boxSizeStyle && Object.keys(boxSizeStyle).length > 0) { const parentItem = this.panel.layoutModelDetails[this.parentName];
Object.assign(boxStyle, { 'flex-grow': 0 }); // 当前项兄弟项个数大于1且本身设置宽或者高默认不占满
if (parentItem && parentItem.details && parentItem.details.length > 1) {
const boxSizeStyle: any = this.getBoxSizeStyle();
if (boxSizeStyle && Object.keys(boxSizeStyle).length > 0) {
Object.assign(boxStyle, { 'flex-grow': 0 });
}
}
} }
return boxStyle; return boxStyle;
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册