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

75 lines
749 B
JavaScript
Raw Normal View History

2024-12-16 17:59:18 +08:00
import request from '@/utils/request'
// 查询工程机具使用列表
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
})
}