Browse Source

Pull request #2005: 无JIRA任务 "" 和 "fill" 同时出现的时候,fill进行压缩,"" 不压缩

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit '1f5077038ff5177d2840da017ee303b74c4f8279':
  "" 和 "fill" 同时出现的时候,fill进行压缩,"" 不压缩
es6
guy 3 years ago
parent
commit
a96e9a4f67
  1. 4
      src/core/wrapper/layout/flex/flex.horizontal.js
  2. 4
      src/core/wrapper/layout/flex/flex.vertical.js
  3. 4
      src/core/wrapper/layout/flex/wrapper/flex.wrapper.horizontal.js
  4. 4
      src/core/wrapper/layout/flex/wrapper/flex.wrapper.vertical.js

4
src/core/wrapper/layout/flex/flex.horizontal.js

@ -53,6 +53,10 @@ BI.FlexHorizontalLayout = BI.inherit(BI.Layout, {
w.element.addClass("f-s-n");
}
}
// 当既有动态宽度和自适应宽度的时候只压缩自适应
if (columnSize === "" && o.columnSize.indexOf("fill") >= 0) {
w.element.addClass("f-s-n");
}
} else {
w.element.addClass("f-s-n");
}

4
src/core/wrapper/layout/flex/flex.vertical.js

@ -52,6 +52,10 @@ BI.FlexVerticalLayout = BI.inherit(BI.Layout, {
w.element.addClass("f-s-n");
}
}
// 当既有动态宽度和自适应宽度的时候只压缩自适应
if (rowSize === "" && o.rowSize.indexOf("fill") >= 0) {
w.element.addClass("f-s-n");
}
} else {
w.element.addClass("f-s-n");
}

4
src/core/wrapper/layout/flex/wrapper/flex.wrapper.horizontal.js

@ -49,6 +49,10 @@ BI.FlexWrapperHorizontalLayout = BI.inherit(BI.Layout, {
w.element.addClass("f-s-n");
}
}
// 当既有动态宽度和自适应宽度的时候只压缩自适应
if (columnSize === "" && o.columnSize.indexOf("fill") >= 0) {
w.element.addClass("f-s-n");
}
} else {
w.element.addClass("f-s-n");
}

4
src/core/wrapper/layout/flex/wrapper/flex.wrapper.vertical.js

@ -49,6 +49,10 @@ BI.FlexWrapperVerticalLayout = BI.inherit(BI.Layout, {
w.element.addClass("f-s-n");
}
}
// 当既有动态宽度和自适应宽度的时候只压缩自适应
if (rowSize === "" && o.rowSize.indexOf("fill") >= 0) {
w.element.addClass("f-s-n");
}
} else {
w.element.addClass("f-s-n");
}

Loading…
Cancel
Save