mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
50 lines
845 B
JavaScript
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 '';
|
|
}
|
|
}
|
|
});
|