From b09ed762edb698bb12b11beb28ee7c2de76ceecc Mon Sep 17 00:00:00 2001
From: sean.zhou <sean.zhou@dji.com>
Date: Tue, 14 Mar 2023 19:44:44 +0800
Subject: [PATCH] Fix the issue that the data is not displayed when the map is not loaded.
---
src/api/http/type.ts | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/api/http/type.ts b/src/api/http/type.ts
index 33c2a73..f7d7982 100644
--- a/src/api/http/type.ts
+++ b/src/api/http/type.ts
@@ -19,11 +19,11 @@
}
// Workspace
export interface IWorkspaceResponse<T> {
-[x: string]: number;
code: number;
data: T;
message: string;
}
+
export type IStatus = 'WAITING' | 'DOING' | 'SUCCESS' | 'FAILED';
export interface CommonListResponse<T> extends IResult {
--
Gitblit v1.9.3