Browse Source

BI-73417 fix: 高度最大为600,需要算上footer的高度

es6
iapyang 4 years ago
parent
commit
65a5e30cc7
  1. 4
      demo/js/core/popup/demo.popover.js
  2. 32
      src/base/layer/layer.popover.js
  3. 13
      src/less/base/layer/layer.popover.less

4
demo/js/core/popup/demo.popover.js

@ -189,6 +189,10 @@ Demo.Func = BI.inherit(BI.Widget, {
};
}),
},
footer: {
type: "bi.label",
text: "这个是footer",
},
}).open(id);
},
}],

32
src/base/layer/layer.popover.js

@ -10,6 +10,9 @@ BI.Popover = BI.inherit(BI.Widget, {
NORMAL: "normal",
BIG: "big",
},
MAX_HEIGHT: 600,
BODY_TGAP: 10,
BODY_HGAP: 20,
},
props: {
@ -17,7 +20,6 @@ BI.Popover = BI.inherit(BI.Widget, {
size: "normal", // small, normal, big
logic: {
dynamic: false,
maxHeight: 600,
},
header: null,
headerHeight: 40,
@ -29,6 +31,7 @@ BI.Popover = BI.inherit(BI.Widget, {
render: function () {
var self = this; var o = this.options;
var c = this._constant;
this.startX = 0;
this.startY = 0;
var size = this._calculateSize();
@ -87,28 +90,31 @@ BI.Popover = BI.inherit(BI.Widget, {
height: o.headerHeight,
},
height: o.headerHeight,
}, {
el: o.logic.dynamic ? {
}, o.logic.dynamic ? {
el: {
type: "bi.vertical",
scrolly: false,
scrolly: true,
cls: "popover-body",
ref: function () {
self.body = this;
},
hgap: 20,
tgap: 10,
css: {
"max-height": this._constant.MAX_HEIGHT - o.headerHeight - (o.footer ? o.footerHeight : 0) - c.BODY_TGAP - 2,
},
items: [{
el: BI.extend({}, o.body, {
extraCls: "dynamic-height-limit-layout-" + size.type,
}),
el: o.body,
}],
} : {
},
hgap: c.BODY_HGAP,
tgap: c.BODY_TGAP,
} : {
el: {
type: "bi.absolute",
items: [{
el: o.body,
left: 20,
top: 10,
right: 20,
left: c.BODY_HGAP,
top: c.BODY_TGAP,
right: c.BODY_HGAP,
bottom: 0,
}],
},

13
src/less/base/layer/layer.popover.less

@ -1,13 +0,0 @@
@maxHeight: 600px;
.bi-popover {
.dynamic-height-limit-layout-small {
min-height: 200px;
max-height: @maxHeight;
}
.dynamic-height-limit-layout-big, .dynamic-height-limit-layout-default {
min-height: 500px;
max-height: @maxHeight;
}
}
Loading…
Cancel
Save