mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
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:
parent
edf7409021
commit
bafbafe887
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user