bonus-material-app/src/services/integratedQuery.js

37 lines
751 B
JavaScript
Raw Normal View History

2025-02-19 19:59:25 +08:00
import { http } from '@/utils/http'
// 领用记录查询
export const getLeaseTaskList = (data) => {
return http({
method: 'GET',
url: '/material/leaseTask/list?isApp=1',
data,
})
}
// 直转记录查询
export const getDirectRotationList = (data) => {
return http({
method: 'GET',
url: '/material/directRotation/appList?isApp=1',
data,
})
}
// 结算减免记录查询
export const getDerateRecordList = (data) => {
return http({
method: 'GET',
url: '/material/derateRecordQuery/getAppList',
data,
})
}
// 结算记录查询
export const getSltRecordQueryList = (data) => {
return http({
method: 'GET',
url: '/material/sltRecordQuery/getAppList',
data,
})
}