张敏 a0dcec4dc5 [refactor] Field & Stepper 自定义组件改造 (#168)
* [refactor] Field & Stepper 自定义组件改造

* Field & Stepper remove componentId
2018-03-28 15:10:35 +08:00

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