From 79d2c344f9ee9945b09434b35cbe63a3816410ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Mon, 17 Feb 2020 14:33:59 +0800 Subject: [PATCH] fix(Calendar): should not check range in single mode --- src/calendar/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/calendar/index.js b/src/calendar/index.js index d00480c25..bb0e1984e 100644 --- a/src/calendar/index.js +++ b/src/calendar/index.js @@ -281,9 +281,11 @@ export default createComponent({ }, onConfirm() { - if (this.checkRange()) { - this.$emit('confirm', this.currentDate); + if (this.range && !this.checkRange()) { + return; } + + this.$emit('confirm', this.currentDate); }, genMonth(date, index) {