cl
2024-09-19 4574d451284e3d8d23dfabae97f0804cf292c357
提交 | 用户 | 时间
0ca254 1 import request from '@/utils/request'
A 2
3 // 查询设备产品过程参数采集列表
4 export function listParamCollection(query) {
5   return request({
6     url: '/main/paramCollection/list',
7     method: 'get',
8     params: query
9   })
10 }
11
12 // 查询设备产品过程参数采集详细
13 export function getParamCollection(id) {
14   return request({
15     url: '/main/paramCollection/' + id,
16     method: 'get'
17   })
18 }
19
20 // 新增设备产品过程参数采集
21 export function addParamCollection(data) {
22   return request({
23     url: '/main/paramCollection',
24     method: 'post',
25     data: data
26   })
27 }
28
29 // 新增设备产品过程参数采集
30 export function addBasicParameters(data) {
31   return request({
32     url: '/main/paramCollection/addBasicParameters',
33     method: 'post',
34     data: data
35   })
36 }
37
38 // 新增设备产品过程参数采集
39 export function yzAddBasicParameters(data) {
40   return request({
41     url: '/main/paramCollection/yzAddBasicParameters',
42     method: 'post',
43     data: data
44   })
45 }
46
47 // 线边总成换总成码
48 export function enterWeighing(data) {
49   return request({
50     url: '/main/paramCollection/enterWeighing',
51     method: 'post',
52     data: data
53   })
54 }
55
56 // 线边总成换总成码
57 export function replaceAssemblyCode(data) {
58   return request({
59     url: '/main/paramCollection/replaceAssemblyCode',
60     method: 'post',
61     data: data
62   })
63 }
64
65 // 新增设备产品过程参数采集 saveCampaignTimeParameters
66 export function checkRecordDataDone(data) {
67   return request({
68     url: '/main/paramCollection/checkRecordDataDone',
69     method: 'post',
70     data: data
71   })
72 }
73
74 export function preInstallOut(data) {
75   return request({
76     url: '/main/paramCollection/preInstallOut',
77     method: 'post',
78     data: data
79   })
80 }
81
82
83 // 新增设备产品过程参数采集 saveCampaignTimeParameters
84 export function saveCampaignTimeParameters(data) {
85   return request({
86     url: '/main/paramCollection/saveCampaignTimeParameters',
87     method: 'post',
88     data: data
89   })
90 }
91
92 export function jrmSaveCampaignTimeParameters(data) {
93   return request({
94     url: '/main/paramCollection/jrmSaveCampaignTimeParameters',
95     method: 'post',
96     data: data
97   })
98 }
99
100 // 新增设备产品过程参数采集 saveCampaignTimeParameters
101 export function addTighteningParameters(data) {
102   return request({
103     url: '/main/paramCollection/addTighteningParameters',
104     method: 'post',
105     data: data
106   })
107 }
108
109 // 修改设备产品过程参数采集
110 export function updateParamCollection(data) {
111   return request({
112     url: '/main/paramCollection',
113     method: 'put',
114     data: data
115   })
116 }
117
118 // 删除设备产品过程参数采集
119 export function delParamCollection(id) {
120   return request({
121     url: '/main/paramCollection/' + id,
122     method: 'delete'
123   })
124 }