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, }) }