Compare commits

..

No commits in common. "481c14c3b708bb13ccb6444fa1fcf10d8d2dd793" and "d692ab4e08a5555b9e37ca1ad0382c64739cc178" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -188,9 +188,9 @@ methods:{
},
defaultDateRange() {
const end = new Date(new Date().toLocaleDateString());
end.setTime(end.getTime() - 15 * 60 * 60 * 1000);
end.setTime(end.getTime() + 10 * 60 * 60 * 1000);
const start = new Date((new Date().toLocaleDateString()));
start.setTime(start.getTime() - 16 * 60 * 60 * 1000);
start.setTime(start.getTime()+ 8 * 60 * 60 * 1000);
this.start = parseInt(start.getTime() / 1000)
this.end = parseInt(end.getTime() / 1000)
return [start, end]