From 1c084020d38da7b5640c532c458323ccf6a7bead Mon Sep 17 00:00:00 2001
From: chenyincheng <501753378@qq.com>
Date: 星期一, 30 一月 2023 12:07:29 +0800
Subject: [PATCH] 加tts语音播报功能

---
 src/stores/sockteInfo.ts |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/stores/sockteInfo.ts b/src/stores/sockteInfo.ts
index 19431f9..4199126 100644
--- a/src/stores/sockteInfo.ts
+++ b/src/stores/sockteInfo.ts
@@ -48,14 +48,14 @@
     }
     /**
      * 更新体重秤结果
-     * @param info 体重结果
+     * @param infoObj 体重结果
      */
-    function setweightSockte(info:weightInfo){
-        console.log(info,'入参')
-        weightSockte.value.deviceName=info.deviceName
-        weightSockte.value.result=info.result
-        weightSockte.value.resultTime=info.resultTime
-        weightSockte.value.state=info.state
+    function setweightSockte(infoObj:info){
+        console.log(infoObj,'入参')
+        weightSockte.value.deviceName=infoObj.deviceName
+        weightSockte.value.result=infoObj.result
+        weightSockte.value.resultTime=infoObj.resultTime
+        weightSockte.value.state=infoObj.state
         console.log('体重秤更新')
     }
      /**

--
Gitblit v1.8.0