lxf 1 year ago
parent
commit
ab7e9eb8d2
1 changed files with 6 additions and 2 deletions
  1. 6 2
      src/views/group/data-board/daily-board/index.vue

+ 6 - 2
src/views/group/data-board/daily-board/index.vue

@@ -400,7 +400,9 @@ const changeTime = () => {
   }
 };
 const getList = () => {
-  TLData.value = {};
+  TLData.value = {
+    count: 0,
+  };
   topLeft.value = true;
   proxy.post("/dailyBoard/getProductionOutStorageList", { beginDate: timeList.value[0] + " 00:00:00", endDate: timeList.value[1] + " 23:59:59" }).then(
     (res) => {
@@ -422,7 +424,9 @@ const getList = () => {
       topLeft.value = false;
     }
   );
-  TCData.value = {};
+  TCData.value = {
+    count: 0,
+  };
   topCenter.value = true;
   proxy.post("/dailyBoard/getOrderBomDifferenceList", { beginDate: timeList.value[0] + " 00:00:00", endDate: timeList.value[1] + " 23:59:59" }).then(
     (res) => {