|
@@ -197,7 +197,8 @@ export default {
|
|
|
created() {
|
|
|
const date = new Date()
|
|
|
const today = `${date.getFullYear()}, ${date.getMonth() + 1}, ${date.getDate()}`
|
|
|
- const tomorrow = `${date.getFullYear()}, ${date.getMonth() + 1}, ${date.getDate() + 1}`
|
|
|
+ date.setDate(date.getDate() + 1)
|
|
|
+ const tomorrow = `${date.getFullYear()}, ${date.getMonth() + 1}, ${date.getDate()}`
|
|
|
const startLoadTime = parseTime(today)
|
|
|
const endLoadTime = parseTime(tomorrow)
|
|
|
this.conditions.startLoadTime = startLoadTime
|