曹睿
2025-04-23 1112158bb2f50257f55e5a1963b601e1e0c4be83
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import request from "@/utils/request";
import { BaseResult } from "@/models/base";
 
const ManageApi = {
  getProductList(params: any) {
    return request<BaseResult<any>>({
      url: "/app/intoProduction",
      method: "GET",
      data: params,
    });
  },
 
  // 查询拉丝绞线报工
  getReportList(params: any) {
    return request<BaseResult<any>>({
      url: "/app/getWireOutput",
      method: "GET",
      data: params,
    });
  },
 
  // 查询自检信息
  getSelfInspection(params: any) {
    return request<BaseResult<any>>({
      url: "/app/getSelfInspection",
      method: "GET",
      data: params,
    });
  },
 
  // 查询领用信息
  getStrandedWireDish(params: any) {
    return request<BaseResult<any>>({
      url: "/app/getStrandedWireDish",
      method: "GET",
      data: params,
    });
  },
};
 
export default ManageApi;