From f2e14fbd69737ca7717835fcc4e02c0f01de10d4 Mon Sep 17 00:00:00 2001
From: buhuazhen <hua100783@gmail.com>
Date: 星期一, 02 二月 2026 10:12:42 +0800
Subject: [PATCH] fix: 修复扫码时code参数格式不一致导致的解析错误

---
 src/api/routingInspection/routingInspection.ts |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/api/routingInspection/routingInspection.ts b/src/api/routingInspection/routingInspection.ts
index 440808e..1e2488a 100644
--- a/src/api/routingInspection/routingInspection.ts
+++ b/src/api/routingInspection/routingInspection.ts
@@ -50,6 +50,14 @@
       data: data,
     });
   },
+
+  // 楠岃瘉浜岀淮鐮�
+  assertScanQR(params: { deviceUid: string }) {
+    return request<BaseResult<any>>({
+      url: "/wireInspection/assertScanQR?deviceUid=" + params.deviceUid,
+      method: "GET",
+    });
+  },
 };
 
 export default RoutingInspectionApi;

--
Gitblit v1.9.3