From 744f3b89a2ed8832f669f322ace820d65cba33fc Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Fri, 13 Oct 2023 10:25:40 +0800
Subject: [PATCH] 调整表格宽度

---
 src/components/g-map/use-drone-control.ts |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/g-map/use-drone-control.ts b/src/components/g-map/use-drone-control.ts
index dee8366..4c64740 100644
--- a/src/components/g-map/use-drone-control.ts
+++ b/src/components/g-map/use-drone-control.ts
@@ -12,21 +12,21 @@
   async function flyToPoint (sn: string, body: PostFlyToPointBody) {
     const { code } = await postFlyToPoint(sn, body)
     if (code === 0) {
-      message.success('Fly to')
+      message.success('飞到')
     }
   }
 
   async function stopFlyToPoint (sn: string) {
     const { code } = await deleteFlyToPoint(sn)
     if (code === 0) {
-      message.success('Stop fly to')
+      message.success('停止飞到')
     }
   }
 
   async function takeoffToPoint (sn: string, body: PostTakeoffToPointBody) {
     const { code } = await postTakeoffToPoint(sn, body)
     if (code === 0) {
-      message.success('Take off successfully')
+      message.success('起飞成功')
     }
   }
 

--
Gitblit v1.9.3