Parcourir la source

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

wukai il y a 4 mois
Parent
commit
14e9ed55a8
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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'