From bdd99a4f6edb84d8eebe6afc38c2c2f86fb4a52c Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期一, 16 六月 2025 14:13:57 +0800 Subject: [PATCH] 修改查询条件 --- src/types/monitorData.d.ts | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/types/monitorData.d.ts b/src/types/monitorData.d.ts index e888c41..7d983d8 100644 --- a/src/types/monitorData.d.ts +++ b/src/types/monitorData.d.ts @@ -38,10 +38,13 @@ startTime: string; endTime: string; time: Array<any>; - gas: string; + gas: string | number; + position: number | null; } }; gasList: Array<any>; + positionList: Array<any>; + excelData: Array<any>; } } @@ -64,12 +67,13 @@ pageSize: number; searchParams: { time: Array<any>; - gas: string; - area: string; + gas: string | number; + area: string |number; } }; gasList: Array<any>; areaList: Array<any>; + excelData: Array<any>; }, } -- Gitblit v1.9.2