fix(bonus): 奖金明细日期问题处理
This commit is contained in:
parent
301e74e861
commit
5353291074
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue