3
0
Fork 0

feat(bonus): 奖金查询日期区间控制

This commit is contained in:
woody 2025-07-14 16:47:52 +08:00
parent 22e0e1b1b8
commit 3a7a8a1ac3
1 changed files with 1 additions and 7 deletions

View File

@ -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()
},