2018-09-21 10:32:25 +08:00

50 lines
845 B
JavaScript

import { VantComponent } from '../common/component';
VantComponent({
props: {
icon: String,
steps: {
type: Array,
observer: 'formatSteps'
},
active: {
type: Number,
observer: 'formatSteps'
},
direction: {
type: String,
value: 'horizontal'
},
activeColor: {
type: String,
value: '#06bf04'
}
},
attached() {
this.formatSteps();
},
methods: {
formatSteps() {
const { steps } = this.data;
steps.forEach((step, index) => {
step.status = this.getStatus(index);
});
this.setData({ steps });
},
getStatus(index) {
const { active } = this.data;
if (index < active) {
return 'finish';
} else if (index === active) {
return 'process';
}
return '';
}
}
});