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

13 lines
182 B
XML

function get(index, active) {
if (index < active) {
return 'finish';
} else if (index === active) {
return 'process';
}
return 'inactive';
}
module.exports = get;