bonus-ui/src/api/stquery/stquery.js

109 lines
1.5 KiB
JavaScript
Raw Normal View History

2024-12-16 17:59:18 +08:00
import request from '@/utils/request'
2024-12-20 18:33:52 +08:00
// 保有设备总量查询
export function getRetainedEquipmentListApi(query) {
return request({
url: '/material/complex_query/getRetainedEquipmentList',
method: 'get',
params: query
})
}
// 保有设备总量查询-无分页
export function getRetainedEquipmentListNoPageApi(query) {
return request({
url: '/material/complex_query/getRetainedEquipmentListNoPage',
method: 'get',
params: query
})
}
2024-12-16 17:59:18 +08:00
// 查询工程机具使用列表
export function getProjUsingRecordListApi(query) {
return request({
url: '/material/complex_query/getProjUsingRecordList',
method: 'get',
params: query
})
}
// 查询工程机具使用列表-无分页
export function getProjUsingRecordListNoPage(query) {
return request({
url: '/material/complex_query/getProjUsingRecordListNoPage',
method: 'get',
params: query
})
}
// 设备使用追溯查询列表
export function getMachineHistoryRecordListApi(query) {
return request({
url: '/material/complex_query/getMachineHistoryRecordList',
method: 'get',
params: query
})
}
2024-12-20 18:33:52 +08:00
// 入库记录列表
export function getInputRecordListApi(query) {
return request({
url: '/material/complex_query/getInputRecordList',
method: 'get',
params: query
})
}
// 出库记录列表
export function getOutRecordListApi(query) {
return request({
url: '/material/complex_query/getOutRecordList',
method: 'get',
params: query
})
}
2024-12-16 17:59:18 +08:00