vant-weapp/dist/steps/index.js
2018-08-22 10:32:27 +08:00

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 '';
}
}
});