fix(DatetimePicker): fix incorrect columns index (#4245)

* fix(DatetimePicker): fix incorrect columns index

* fix(DatetimePicker): emit input when date change

* fix(DatetimePicker): remove debug code
This commit is contained in:
nemo-shen 2021-06-03 09:39:31 +08:00 committed by GitHub
parent edf7409021
commit bafbafe887
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,13 +110,11 @@ VantComponent({
const { data } = this;
const val = this.correctValue(data.value);
const isEqual = val === data.innerValue;
if (!isEqual) {
this.updateColumnValue(val).then(() => {
this.updateColumnValue(val).then(() => {
if (!isEqual) {
this.$emit('input', val);
});
} else {
this.updateColumns();
}
}
});
},
getPicker() {