jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Collapse/index.sjs
2024-11-10 15:01:22 +08:00

24 lines
447 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';
}
const height = contentHeight[index];
if (height === '') {
return '';
}
if (height) {
return `height: ${height}`;
}
return 'height: 0px';
}
export default { isActive, getStyleHeight };