From 896a93c39859d917ebdc80cadf9a3f1904baad97 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Sun, 08 Oct 2023 17:31:09 +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