From 337905dff2d88f6473e826c88cd16ba5f212f6ce Mon Sep 17 00:00:00 2001
From: zhouwenxuan <1175765986@qq.com>
Date: Wed, 06 Sep 2023 16:02:50 +0800
Subject: [PATCH] 实时监测数据
---
src/types/monitorData.d.ts | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/src/types/monitorData.d.ts b/src/types/monitorData.d.ts
index d49cb4c..aef6fa0 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: {
@@ -35,6 +35,8 @@
pageIndex: number;
pageSize: number;
searchParams:{
+ startTime: string;
+ endTime: string;
time: Array<any>;
gas: string;
}
@@ -46,11 +48,11 @@
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: {
--
Gitblit v1.9.2