32 lines
617 B
JavaScript
32 lines
617 B
JavaScript
import { http } from '@/utils/http'
|
|
|
|
/**
|
|
* 工器具台账 ---- 列表查询
|
|
*/
|
|
export const getToolsLedgerList = (data) => {
|
|
return http({
|
|
method: 'GET',
|
|
url: '/material/complex_query/getToolsLedgerList',
|
|
data,
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 工器具台账详情 ---- 列表查询
|
|
*/
|
|
export const getToolsLedgerDetailsList = (data) => {
|
|
return http({
|
|
method: 'GET',
|
|
url: '/material/complex_query/getToolsDetailsList',
|
|
data,
|
|
})
|
|
}
|
|
|
|
// 班组库存
|
|
export const getTeamUseNumList = (data) => {
|
|
return http({
|
|
method: 'GET',
|
|
url: '/material/complex_query/getTeamUseNumList',
|
|
data,
|
|
})
|
|
} |