|
|
@ -133,3 +133,14 @@ export const exportCustomerStatementShareMain = async (params) => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 查询模具分摊明细列表
|
|
|
|
export const getCustomerToolApportStatementPage = async (params) => { |
|
|
|
if (params.isSearch) { |
|
|
|
delete params.isSearch |
|
|
|
const data = {...params} |
|
|
|
return await request.post({ url: '/wms/customer-tool-apport-statement-detail/senior', data }) |
|
|
|
} else { |
|
|
|
return await request.get({ url: `/wms/customer-tool-apport-statement-detail/page`, params }) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|