From d4c309cdc7accad8616f44aecef32acfbb97fc7c Mon Sep 17 00:00:00 2001 From: YeMingfei666 <1619116647@qq.com> Date: Tue, 5 Nov 2024 15:10:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=97=B6=E9=97=B4=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E7=BB=84=E4=BB=B6=E9=83=A8=E5=88=86=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/my-components/my-date-pickerview.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/components/my-components/my-date-pickerview.vue b/components/my-components/my-date-pickerview.vue index 7507b74..0e1d466 100644 --- a/components/my-components/my-date-pickerview.vue +++ b/components/my-components/my-date-pickerview.vue @@ -487,7 +487,9 @@ const endTotal = returnDateString(e.detail.value, true).getTime() value1.value = e.detail.value nextTick(() => { - value1.value = endTotal < startTotal ? value.value : e.detail.value + if (props.isArea) { + value1.value = endTotal < startTotal ? value.value : e.detail.value + } debounce(changeDays(true, value1.value), 100) }) } @@ -521,7 +523,7 @@ } function nullFunction() { - + } function pickend(e) {