pad-app/wxcomponents/vant/dist/steps/index-status.wxs

13 lines
182 B
Plaintext
Raw Normal View History

2023-07-03 17:49:29 +08:00
function get(index, active) {
if (index < active) {
return 'finish';
} else if (index === active) {
return 'process';
}
return 'inactive';
}
module.exports = get;