From 646135b9c54d6ccf5d47af30bf208bdfe5005017 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期二, 09 十二月 2025 10:31:44 +0800
Subject: [PATCH] fix: 二维码内容简化,只传一个id。根据id查询详细信息。

---
 src/api/product/twist.ts |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/src/api/product/twist.ts b/src/api/product/twist.ts
index 378c77f..2ea641c 100644
--- a/src/api/product/twist.ts
+++ b/src/api/product/twist.ts
@@ -29,6 +29,15 @@
     });
   },
 
+  // 鎷変笣浜岀淮鐮佹煡璇�
+  getTagByIdLs(params: { outPutId: string | number }) {
+    return request<BaseResult<any>>({
+      url: "/app/getTagByIdLs",
+      method: "GET",
+      data: params,
+    });
+  },
+
   addStrandedWireDish(data: any) {
     return request<BaseResult<any>>({
       url: "/app/addStrandedWireDish",
@@ -141,6 +150,15 @@
       method: "POST",
     });
   },
+
+  // 楠岃瘉鍙樻洿
+  verifyChanges(params: { projectId: number | string }) {
+    return request<BaseResult<any>>({
+      url: "/wireOutput/verifyChanges",
+      method: "GET",
+      data: params,
+    });
+  },
 };
 
 export default TwistApi;

--
Gitblit v1.9.3