From 7d9fb50b4e444ba3afec098ad031e93b4e9ee9ee Mon Sep 17 00:00:00 2001
From: GuLiMmo <2820890765@qq.com>
Date: Wed, 29 Nov 2023 10:20:26 +0800
Subject: [PATCH] 航线库修改/api打包后可修改

---
 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