diff --git a/src/api/wms/customerDeliveryForecast/index.ts b/src/api/wms/customerDeliveryForecast/index.ts index 65322ff1d..d249cd0b7 100644 --- a/src/api/wms/customerDeliveryForecast/index.ts +++ b/src/api/wms/customerDeliveryForecast/index.ts @@ -61,3 +61,10 @@ export const exportCustomerDeliveryForecast = async (params) => { export const importTemplate = () => { return request.download({ url: '/wms/customer-delivery-forecast/get-import-template' }) } + +// 查询发货预测主列表 +export const getPageTableHead = async (params) => { + params = getPageParams(params) + console.log('params',params) + return await request.get({ url: `/wms/customer-delivery-forecast/queryPageTableHead`, params }) +} \ No newline at end of file