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