fix(bonus): 奖金明细日期问题处理

This commit is contained in:
woody 2025-07-01 09:23:49 +08:00
parent 301e74e861
commit 5353291074
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ export default {
const end = new Date()
const start = new Date()
end.setDate(end.getDate() - 1)
start.setDate(end.getDate() - 15) // 15
start.setDate(start.getDate() - 15) // 15
this.startDate = this.formatDate(start)
this.endDate = this.formatDate(end)