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

16 lines
293 B
JavaScript

function getClassName(current, index, status) {
current = current || 0;
if (index < current) {
return 'active';
}
if (index === current) {
if (status === 'error') {
return 'error';
}
return 'active';
}
return 'non-active';
}
export default { getClassName };