import request from '@/utils/request'
|
|
// 查询设备产品过程参数采集列表
|
export function listParamCollection(query) {
|
return request({
|
url: '/main/paramCollection/list',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 查询设备产品过程参数采集详细
|
export function getParamCollection(id) {
|
return request({
|
url: '/main/paramCollection/' + id,
|
method: 'get'
|
})
|
}
|
|
// 新增设备产品过程参数采集
|
export function addParamCollection(data) {
|
return request({
|
url: '/main/paramCollection',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 新增设备产品过程参数采集
|
export function addBasicParameters(data) {
|
return request({
|
url: '/main/paramCollection/addBasicParameters',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 新增设备产品过程参数采集
|
export function yzAddBasicParameters(data) {
|
return request({
|
url: '/main/paramCollection/yzAddBasicParameters',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 线边总成换总成码
|
export function replaceAssemblyCode(data) {
|
return request({
|
url: '/main/paramCollection/replaceAssemblyCode',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 新增设备产品过程参数采集 saveCampaignTimeParameters
|
export function saveCampaignTimeParameters(data) {
|
return request({
|
url: '/main/paramCollection/saveCampaignTimeParameters',
|
method: 'post',
|
data: data
|
})
|
}
|
|
export function jrmSaveCampaignTimeParameters(data) {
|
return request({
|
url: '/main/paramCollection/jrmSaveCampaignTimeParameters',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 新增设备产品过程参数采集 saveCampaignTimeParameters
|
export function addTighteningParameters(data) {
|
return request({
|
url: '/main/paramCollection/addTighteningParameters',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 修改设备产品过程参数采集
|
export function updateParamCollection(data) {
|
return request({
|
url: '/main/paramCollection',
|
method: 'put',
|
data: data
|
})
|
}
|
|
// 删除设备产品过程参数采集
|
export function delParamCollection(id) {
|
return request({
|
url: '/main/paramCollection/' + id,
|
method: 'delete'
|
})
|
}
|