feat:物料试剂

This commit is contained in:
houjunxiang
2026-03-27 17:32:11 +08:00
parent 904d1c4ea4
commit 0df3be4057
10 changed files with 416 additions and 4 deletions

View File

@@ -81,5 +81,39 @@ export default {
url: '/qms/resource/material-use-end-reuse/reuse',
method: 'PUT',
data
}),
// 流程列表
getLifecycleList: params =>
request({
url: '/qms/resource/material-lifecycle/page',
method: 'GET',
params
}),
// 获取流程明细
getLifecycleDetail: params =>
request({
url: '/qms/resource/material-lifecycle/get',
method: 'GET',
params
}),
// 存盘点明细
inventoryCheckDetails: params =>
request({
url: '/qms/resource/material-inventory-check-detail/page',
method: 'GET',
params
}),
inventoryCheckInf: data =>
request({
url: '/qms/resource/material-lifecycle/inventory-inf',
method: 'PUT',
data
}),
// 盘点执行人提交盘点
submitInventoryCheck: params =>
request({
url: '/qms/resource/material-lifecycle/operator-submit',
method: 'PUT',
params
})
}