fix: stepper doc (#222)

This commit is contained in:
nrz 2018-05-07 22:38:35 +08:00 committed by Yao
parent 49db8e944f
commit fd77f4736d
2 changed files with 20 additions and 8 deletions

View File

@ -18,10 +18,14 @@ Page(Object.assign({}, {
}
},
handleZanStepperChange(e) {
const componentId = e.target.dataset.componentId;
const stepper = e.detail;
handleZanStepperChange({
detail: stepper,
target: {
dataset: {
componentId
}
}
}) {
this.setData({
[`${componentId}.stepper`]: stepper
});

View File

@ -27,12 +27,20 @@ Page({
}
},
handleZanStepperChange({ componentId, stepper }) {
// componentId 即为在模板中传入的 componentId
// 用于在一个页面上使用多个 stepper 时,进行区分
handleZanStepperChange({
// stepper 代表操作后,应该要展示的数字,需要设置到数据对象里,才会更新页面展示
detail: stepper,
// 模板中传入的 componentId用于区分一个页面上的多个stepper
target: {
dataset: {
componentId
}
}
}) {
this.setData({
stepper
[`${componentId}.stepper`]: stepper
});
}
});