From 8cc901ed214f3885b34a07d0520fbcfd50063439 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期三, 19 十一月 2025 14:30:39 +0800
Subject: [PATCH] fix: 完成绞线自检,生产确认等功能新增
---
src/api/product/manage.ts | 35 +++++++++++++++++++++++++++++++++++
1 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/src/api/product/manage.ts b/src/api/product/manage.ts
index 5e8e99b..34dd68a 100644
--- a/src/api/product/manage.ts
+++ b/src/api/product/manage.ts
@@ -70,6 +70,41 @@
data: params,
});
},
+
+ //鎷変笣鎶ュ伐鍓嶇敓浜х‘璁�
+ queryWireRawMaterialInspect(params: any) {
+ return request<BaseResult<any>>({
+ url: "/wireInspection/queryWireRawMaterialInspect/",
+ method: "GET",
+ data: params,
+ });
+ },
+
+ // 鏂板鎷変笣鍘熸潗鏂欓鐢�
+ addWireRawMaterialInspect(data: any) {
+ return request<BaseResult<any>>({
+ url: "/wireInspection/saveWireRawMaterialInspect",
+ method: "POST",
+ data: data,
+ });
+ },
+
+ //鏁版嵁瀛楀吀
+ dictAPI(type: string) {
+ return request<BaseResult<any>>({
+ url: "/system/dict/data/type/" + type,
+ method: "GET",
+ });
+ },
+
+ // 鑾峰彇鐢熶骇缁熻
+ getProductStatistics(params: any) {
+ return request<BaseResult<any>>({
+ url: "/app/getProductStatistics",
+ method: "GET",
+ data: params,
+ });
+ },
};
export default ManageApi;
--
Gitblit v1.9.3