jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/less/Collapse/index.sjs
2024-11-15 11:51:28 +08:00

23 lines
477 B
JavaScript

function isActive(current, index, disabled) {
if (disabled) {
return false;
}
return (current || []).indexOf(index) >= 0;
}
function getStyleHeight(index, contentHeight, disabled) {
if (disabled) {
return 'height: 0px';
}
var height = contentHeight[index];
if (height === '') {
return '';
}
if (height) {
return "height: ".concat(height);
}
return 'height: 0px';
}
export default {
isActive: isActive,
getStyleHeight: getStyleHeight
};