mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
30 lines
458 B
JavaScript
30 lines
458 B
JavaScript
Page(Object.assign({}, {
|
|
data: {
|
|
stepper1: {
|
|
stepper: 10,
|
|
min: 1,
|
|
max: 20
|
|
},
|
|
stepper2: {
|
|
stepper: 10,
|
|
min: 1,
|
|
max: 20
|
|
},
|
|
stepper3: {
|
|
stepper: 10,
|
|
min: 1,
|
|
max: 20,
|
|
step: 2
|
|
}
|
|
},
|
|
|
|
handleZanStepperChange(e) {
|
|
const componentId = e.target.dataset.componentId;
|
|
const stepper = e.detail;
|
|
|
|
this.setData({
|
|
[`${componentId}.stepper`]: stepper
|
|
});
|
|
}
|
|
}));
|