import request from '@/utils/request'
|
|
// 查询配方配置子信息列表
|
export function listFormulaChild(query) {
|
return request({
|
url: '/bs/formulaChild/list',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 不分页查询配方配置子信息列表
|
export function noPageListFormulaChild(query) {
|
return request({
|
url: '/bs/formulaChild/noPageListFormulaChild',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function releaseCheck(query) {
|
return request({
|
url: '/bs/formulaChild/releaseCheck',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function updateResults(query) {
|
return request({
|
url: '/bs/formulaChild/updateResults',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function initializedData(query) {
|
return request({
|
url: '/bs/formulaChild/initializedData',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function fistSetpNumber(query) {
|
return request({
|
url: '/bs/formulaChild/fistSetpNumber',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function jrmUpdateResults(query) {
|
return request({
|
url: '/bs/formulaChild/jrmUpdateResults',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function yzUpdateResults(query) {
|
return request({
|
url: '/bs/formulaChild/yzUpdateResults',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function jrmWorkpieceRelease(query) {
|
return request({
|
url: '/bs/formulaChild/jrmWorkpieceRelease',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function clearWorkpieceRelease(query) {
|
return request({
|
url: '/bs/formulaChild/clearWorkpieceRelease',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function workpieceRelease(query) {
|
return request({
|
url: '/bs/formulaChild/workpieceRelease',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function checkMaterialCode(query) {
|
return request({
|
url: '/bs/formulaChild/checkMaterialCode',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function yzUpdateTighteningFormula(query) {
|
return request({
|
url: '/bs/formulaChild/yzUpdateTighteningFormula',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息列表
|
export function updateTighteningFormula(query) {
|
return request({
|
url: '/bs/formulaChild/updateTighteningFormula',
|
method: 'get',
|
params: query
|
|
})
|
}
|
|
// 查询配方配置子信息详细
|
export function getFormulaChild(id) {
|
return request({
|
url: '/bs/formulaChild/' + id,
|
method: 'get'
|
})
|
}
|
|
// 新增配方配置子信息
|
export function addFormulaChild(data) {
|
return request({
|
url: '/bs/formulaChild',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 修改配方配置子信息
|
export function updateFormulaChild(data) {
|
return request({
|
url: '/bs/formulaChild',
|
method: 'put',
|
data: data
|
})
|
}
|
|
// 删除配方配置子信息
|
export function delFormulaChild(id) {
|
return request({
|
url: '/bs/formulaChild/' + id,
|
method: 'delete'
|
})
|
}
|