From fe35e7e9faa159a58b59a9f8085934ae60535856 Mon Sep 17 00:00:00 2001 From: liyong <18434998025@163.com> Date: 星期三, 23 四月 2025 14:30:54 +0800 Subject: [PATCH] feat: 单丝参数 --- src/api/product/twist.ts | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/src/api/product/twist.ts b/src/api/product/twist.ts index 7f980af..78caaa4 100644 --- a/src/api/product/twist.ts +++ b/src/api/product/twist.ts @@ -19,6 +19,23 @@ data: data, }); }, + + // 鍗曚笣棰嗙敤鎵爜 + getScarn(params: any) { + return request<BaseResult<any>>({ + url: "/app/scarn", + method: "GET", + data: params, + }); + }, + + addStrandedWireDish(data: any) { + return request<BaseResult<any>>({ + url: "/app/addStrandedWireDish", + method: "POST", + data: data, + }); + }, }; export default TwistApi; -- Gitblit v1.9.3