fix(Area): fix change event emit wrong values (#2290)

fix #2287
This commit is contained in:
rex 2019-11-12 19:56:02 +08:00 committed by GitHub
parent eabbeb47dd
commit 8af68a0d7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,12 +108,10 @@ VantComponent({
onChange(event: Weapp.Event) {
const { index, picker, value } = event.detail;
this.code = value[index].code;
let getValues = picker.getValues();
getValues = this.parseOutputValues(getValues);
this.setValues().then(() => {
this.$emit('change', {
picker,
values: getValues,
values: this.parseOutputValues(picker.getValues()),
index
});
});