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

16 lines
307 B
Plaintext
Raw Normal View History

2024-11-15 03:51:28 +00:00
function getClassName(current, index, status) {
current = current || 0;
if (index < current) {
return 'finish';
}
if (index === current) {
if (status === 'error') {
return 'error';
}
return 'active';
}
return 'non-active';
}
export default {
getClassName: getClassName
};