mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
66 lines
1017 B
JavaScript
66 lines
1017 B
JavaScript
Component({
|
|
options: {
|
|
addGlobalClass: true
|
|
},
|
|
|
|
externalClasses: [
|
|
'custom-class'
|
|
],
|
|
|
|
properties: {
|
|
icon: String,
|
|
steps: {
|
|
type: Array,
|
|
observer() {
|
|
this.formatSteps();
|
|
}
|
|
},
|
|
active: {
|
|
type: Number,
|
|
observer() {
|
|
this.formatSteps();
|
|
}
|
|
},
|
|
direction: {
|
|
type: String,
|
|
value: 'horizontal'
|
|
},
|
|
activeColor: {
|
|
type: String,
|
|
value: '#06bf04'
|
|
}
|
|
},
|
|
|
|
attached() {
|
|
this.formatSteps();
|
|
},
|
|
|
|
methods: {
|
|
formatSteps() {
|
|
const { steps } = this.data;
|
|
const formattedSteps = steps.map((step, index) => {
|
|
return {
|
|
...step,
|
|
status: this.getStatus(index)
|
|
};
|
|
});
|
|
|
|
this.setData({
|
|
formattedSteps
|
|
});
|
|
},
|
|
|
|
getStatus(index) {
|
|
const { active } = this.data;
|
|
|
|
if (index < active) {
|
|
return 'finish';
|
|
} else if (index === active) {
|
|
return 'process';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
}
|
|
});
|