fix(bonus): 奖金明细日期问题处理
This commit is contained in:
		
							parent
							
								
									cd416e667d
								
							
						
					
					
						commit
						8d8310c6ff
					
				| 
						 | 
					@ -132,7 +132,7 @@ export default {
 | 
				
			||||||
      const end = new Date()
 | 
					      const end = new Date()
 | 
				
			||||||
      const start = new Date()
 | 
					      const start = new Date()
 | 
				
			||||||
      end.setDate(end.getDate() - 1)
 | 
					      end.setDate(end.getDate() - 1)
 | 
				
			||||||
      start.setDate(end.getDate() - 15) // 默认查询最近15天
 | 
					      start.setDate(start.getDate() - 15) // 默认查询最近15天
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      this.startDate = this.formatDate(start)
 | 
					      this.startDate = this.formatDate(start)
 | 
				
			||||||
      this.endDate = this.formatDate(end)
 | 
					      this.endDate = this.formatDate(end)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue