问题修复

This commit is contained in:
hongchao 2025-08-23 18:55:01 +08:00
parent 181a2973d8
commit 31c2df4a82
2 changed files with 1763 additions and 0 deletions

68
src/api/ma/putInStore.js Normal file
View File

@ -0,0 +1,68 @@
import request from '@/utils/request'
//机具退料入库
export function getReturnOfMaterialsInfoAll(query) {
return request({
url: '/material/warehousing/getList',
method: 'get',
params: query
})
}
// 获取厂家
export function supplierInfoList(query) {
return request({
url: '/material/warehousing/supplierInfoList',
method: 'get',
params: query,
})
}
// 提交编码入库
export function inputByCode(data) {
return request({
url: '/material/warehousing/addList',
method: 'post',
data: data
})
}
// 查看盘点入库详情接口
export const getDetailsListApi = (params) => {
return request.get(`/material/warehousing/getDetail`, {
params
})
}
// 获取 设备树
export function getDeviceTypeTree(params = {}){
return request({
url: '/material/select/getDeviceTypeTreeTwo',
method: 'post',
data: params
})
}
// 获取 设备树
export function getDeviceTypeTreeTwo(params = {}){
return request({
url: '/material/select/getDeviceTypeTreeTwo',
method: 'post',
data: params
})
}

File diff suppressed because it is too large Load Diff