Browse Source

简单点取前一个生产天,直接-31小时 即可,正常是 0-7点往前取2天,7点后只往前取一天。

wukai 4 months ago
parent
commit
14e9ed55a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/calc/calcDay/index.vue

+ 1 - 1
src/views/calc/calcDay/index.vue

@@ -161,7 +161,7 @@ const data = reactive({
   queryParams: {
     pageNum: 1,
     pageSize: 10,
-    time: new Date().Format('yyyy-MM-dd'),
+    time: new Date(new Date().getTime()-31*60*60*1000).Format('yyyy-MM-dd'),
     deviceId: null,
     orderByColumn: 'id',
     isAsc: 'descending'