|
@@ -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) => {
|