jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/less/Collapse/index.sjs

24 lines
447 B
Plaintext
Raw Normal View History

2024-11-10 07:01:22 +00:00
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 };