From 7069ff06f3e28c615eba1b42015a4784d996dd05 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期四, 08 五月 2025 13:13:16 +0800 Subject: [PATCH] 新修改 --- src/types/monitorData.d.ts | 25 +++++++++++++++---------- 1 files changed, 15 insertions(+), 10 deletions(-) diff --git a/src/types/monitorData.d.ts b/src/types/monitorData.d.ts index a0219f5..bd88bc1 100644 --- a/src/types/monitorData.d.ts +++ b/src/types/monitorData.d.ts @@ -23,8 +23,8 @@ time: string; windSpeed: string; windDirection: string; - gasName: string; - gasPPM: string; + name: string; + gasValue: string; } export interface TableGasState { tableData: { @@ -38,21 +38,25 @@ startTime: string; endTime: string; time: Array<any>; - gas: string; + gas: string | number; + position: number | null; } }; + isPpm: boolean gasList: Array<any>; + positionList: Array<any>; + excelData: Array<any>; } } export interface TableFluxRow { id: string; time: string; - area: string; + regionName: string; windSpeed: string; windDirection: string; - gasName: string; - gasPPM: string; + name: string; + gasValue: string; } export interface TableFluxState { tableData: { @@ -64,13 +68,14 @@ 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>; + }, } export interface TableWeatherRow { @@ -97,4 +102,4 @@ }; weatherTypeList: Array<any>; } -} \ No newline at end of file +} -- Gitblit v1.9.2