解决冲突

This commit is contained in:
‘937886381’
2023-12-15 16:28:37 +08:00
37 changed files with 1325 additions and 92 deletions

View File

@@ -1,7 +1,7 @@
/*
* @Author: Do not edit
* @Date: 2023-10-21 11:50:46
* @LastEditTime: 2023-11-15 15:56:14
* @LastEditTime: 2023-12-14 10:57:24
* @LastEditors: DY
* @Description:
*/
@@ -65,4 +65,31 @@ export function getHotMaterialList(query) {
method: 'get',
params: query
})
}
// 创建原料质量检测条目
export function createHotMaterialCheck(data) {
return request({
url: '/base/core-hot-material-check/create',
method: 'post',
data: data
})
}
// 更新原料质量检测条目
export function updateHotMaterialCheck(data) {
return request({
url: '/base/core-hot-material-check/update',
method: 'put',
data: data
})
}
// 获得质量检测条目列表
export function getHotCheckList(query) {
return request({
url: '/base/core-hot-material-check/listByMaterial',
method: 'get',
params: query
})
}