|
|
@ -43,7 +43,12 @@ export const deleteProductionlineitem = async (id: number) => { |
|
|
|
|
|
|
|
// 导出生产线物料关系 Excel
|
|
|
|
export const exportProductionlineitem = async (params) => { |
|
|
|
return await request.download({ url: `/wms/productionlineitem/export-excel`, params }) |
|
|
|
if (params.isSearch) { |
|
|
|
const data = {...params} |
|
|
|
return await request.downloadPost({ url: `/wms/productionlineitem/export-excel-senior`, data }) |
|
|
|
} else { |
|
|
|
return await request.download({ url: `/wms/productionlineitem/export-excel`, params }) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 下载用户导入模板
|
|
|
|