From 4ff143ab2944c1d516c663ccb4ee4b831dd71335 Mon Sep 17 00:00:00 2001 From: LinCyJang Date: Tue, 28 Oct 2025 00:23:42 +0800 Subject: [PATCH] =?UTF-8?q?Feat=EF=BC=9A=E6=97=85=E5=B1=85=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E8=B0=83=E6=95=B4=EF=BC=8C=E9=80=BB=E8=BE=91=E8=A1=A5?= =?UTF-8?q?=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DateRangePicker/DateRangePicker.vue | 18 ++++++------ pkg_product/views/groupBuyDetails.vue | 29 +++++++++++++++---- pkg_product/views/healthSanctum.vue | 2 ++ pkg_product/views/sojoumStore.vue | 27 ++++++++++------- pkg_product/views/submitOrder.vue | 3 +- pkg_user/views/giftList.vue | 2 +- 6 files changed, 54 insertions(+), 27 deletions(-) diff --git a/components/DateRangePicker/DateRangePicker.vue b/components/DateRangePicker/DateRangePicker.vue index 2db4873..e128c2e 100644 --- a/components/DateRangePicker/DateRangePicker.vue +++ b/components/DateRangePicker/DateRangePicker.vue @@ -345,13 +345,13 @@ export default { const currentDate = new Date(this.tempStartDate) while (currentDate <= this.tempEndDate) { const day = currentDate.getDate() - if (this.isDisabled(day)) { - uni.showToast({ - title: '所选日期范围包含不可预约日期,请重新选择', - icon: 'none' - }) - return - } + // if (this.isDisabled(day)) { + // uni.showToast({ + // title: '所选日期范围包含不可预约日期,请重新选择', + // icon: 'none' + // }) + // return + // } currentDate.setDate(currentDate.getDate() + 1) } @@ -362,7 +362,7 @@ export default { this.startDate ? this.formatDate(this.startDate) : null, this.endDate ? this.formatDate(this.endDate) : null ]) - this.handleClose(false) + this.handleClose(true) }, handleClose(shouldClear = true) { @@ -370,7 +370,7 @@ export default { this.clearDates() this.startDate = null this.endDate = null - this.$emit('input', [null, null]) + // this.$emit('input', [null, null]) } this.$emit('update:show', false) this.$emit('close') diff --git a/pkg_product/views/groupBuyDetails.vue b/pkg_product/views/groupBuyDetails.vue index c17bd6e..a6b05bf 100644 --- a/pkg_product/views/groupBuyDetails.vue +++ b/pkg_product/views/groupBuyDetails.vue @@ -1,5 +1,14 @@