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
42
43
| import request from "@/utils/request";
|
| // 查询字典
| export function queryConfigParams(dictType) {
| return request({
| url: `/system/dict/data/type/${dictType}`,
| method: "get",
| });
| }
|
| export function queryConfigParamsSave(data) {
| return request({
| url: `/system/dict/data`,
| method: "put",
| data: data,
| });
| }
|
| export function supplyGapList(query) {
| return request({
| url: `/aps/ApsPlateStandardRequire/supplyGapList`,
| method: "get",
| params: query
| });
| }
|
| // 钣金冗余工单报表 apsPlatePlan/redundantOrderList
| export function redundantOrderList(query) {
| return request({
| url: `/aps/apsPlatePlan/redundantOrderList`,
| method: "get",
| params: query
| });
| }
|
| // 钣金异常料号工单 /ApsPlateStandardRequireError/list
| export function plateStandardRequireErrorList(query) {
| return request({
| url: `/aps/ApsPlateStandardRequireError/list`,
| method: "get",
| params: query
| });
| }
|
|