From 3a7a8a1ac3483ac43998863bb00366244b9a7175 Mon Sep 17 00:00:00 2001 From: woody Date: Mon, 14 Jul 2025 16:47:52 +0800 Subject: [PATCH] =?UTF-8?q?feat(bonus):=20=E5=A5=96=E9=87=91=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E6=97=A5=E6=9C=9F=E5=8C=BA=E9=97=B4=E6=8E=A7=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/bonus/index.vue | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/pages/bonus/index.vue b/pages/bonus/index.vue index f212713..f37358a 100644 --- a/pages/bonus/index.vue +++ b/pages/bonus/index.vue @@ -152,13 +152,7 @@ export default { // 校验区间不能超过31天 const start = dayjs(this.startDate) const end = dayjs(this.endDate) - if (end.diff(start, 'day') > 60) { - uni.showToast({ - title: '最多只能查询60天内的数据', - icon: 'none', - }) - return - } + this.bonusList = [] this.fetchBonusData() },