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

12 lines
235 B
JavaScript
Raw Normal View History

2025-06-06 09:08:23 +08:00
import { http } from '@/utils/http'
/**
* 工器具退料 ---- 列表查询
*/
export const getToolsLedgerList = (data) => {
return http({
method: 'GET',
url: '/material/complex_query/getToolsLedgerList',
data,
})
}