lxf 1 年之前
父节点
当前提交
ab7e9eb8d2
共有 1 个文件被更改,包括 6 次插入2 次删除
  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) => {