|
|
@ -13,7 +13,8 @@ BI.Popover = BI.inherit(BI.Widget, { |
|
|
|
MAX_HEIGHT: 600 |
|
|
|
MAX_HEIGHT: 600 |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
props: function () { |
|
|
|
|
|
|
|
return { |
|
|
|
baseCls: "bi-popover bi-card bi-border-radius", |
|
|
|
baseCls: "bi-popover bi-card bi-border-radius", |
|
|
|
size: "normal", // small, normal, big
|
|
|
|
size: "normal", // small, normal, big
|
|
|
|
logic: { |
|
|
|
logic: { |
|
|
@ -25,8 +26,9 @@ BI.Popover = BI.inherit(BI.Widget, { |
|
|
|
footer: null, |
|
|
|
footer: null, |
|
|
|
footerHeight: 44, |
|
|
|
footerHeight: 44, |
|
|
|
closable: true, // BI-40839 是否显示右上角的关闭按钮
|
|
|
|
closable: true, // BI-40839 是否显示右上角的关闭按钮
|
|
|
|
bodyHgap: 20, |
|
|
|
bodyHgap: BI.SIZE_CONSANTS.H_GAP_SIZE, |
|
|
|
bodyTgap: 10 |
|
|
|
bodyTgap: 10 |
|
|
|
|
|
|
|
}; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
render: function () { |
|
|
@ -73,8 +75,8 @@ BI.Popover = BI.inherit(BI.Widget, { |
|
|
|
title: o.header, |
|
|
|
title: o.header, |
|
|
|
textAlign: "left" |
|
|
|
textAlign: "left" |
|
|
|
}, |
|
|
|
}, |
|
|
|
left: 20, |
|
|
|
left: BI.SIZE_CONSANTS.H_GAP_SIZE, |
|
|
|
right: o.closable ? 0 : 20 |
|
|
|
right: o.closable ? 0 : BI.SIZE_CONSANTS.H_GAP_SIZE |
|
|
|
}] |
|
|
|
}] |
|
|
|
} |
|
|
|
} |
|
|
|
}, o.closable ? { |
|
|
|
}, o.closable ? { |
|
|
@ -127,9 +129,9 @@ BI.Popover = BI.inherit(BI.Widget, { |
|
|
|
type: "bi.absolute", |
|
|
|
type: "bi.absolute", |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: o.footer, |
|
|
|
el: o.footer, |
|
|
|
left: 20, |
|
|
|
left: BI.SIZE_CONSANTS.H_GAP_SIZE, |
|
|
|
top: 0, |
|
|
|
top: 0, |
|
|
|
right: 20, |
|
|
|
right: BI.SIZE_CONSANTS.H_GAP_SIZE, |
|
|
|
bottom: 0 |
|
|
|
bottom: 0 |
|
|
|
}], |
|
|
|
}], |
|
|
|
height: o.footerHeight |
|
|
|
height: o.footerHeight |
|
|
|