fix(Calendar): should not check range in single mode

This commit is contained in:
陈嘉涵 2020-02-17 14:33:59 +08:00
parent f1a5097a2e
commit 79d2c344f9

View File

@ -281,9 +281,11 @@ export default createComponent({
}, },
onConfirm() { onConfirm() {
if (this.checkRange()) { if (this.range && !this.checkRange()) {
this.$emit('confirm', this.currentDate); return;
} }
this.$emit('confirm', this.currentDate);
}, },
genMonth(date, index) { genMonth(date, index) {