Yao d7ce0a8cda
[bugfix] Stepper: 修复组件不传 max 情况下,默认置灰的问题 (#269)
* 修复stepper文档错误

* 采用极大数字来代替 infinity
2018-05-23 23:56:53 +08:00

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