diff --git a/src/api/wms/demandforecastingMain/index.ts b/src/api/wms/demandforecastingMain/index.ts index 3d4481fbd..7bade4c22 100644 --- a/src/api/wms/demandforecastingMain/index.ts +++ b/src/api/wms/demandforecastingMain/index.ts @@ -173,3 +173,15 @@ export const publish = async (data) => { } +//批量重试 +export const batchPublish = async(ids: string) => { + // return request.get({ + // url: '/wms/outer/batchRetry?ids=' + ids+'&type='+type + // }) + //} + let data={ + 'ids':ids + } + return await request.post({ url: `/wms/outer/batchRetry`, data }) +} +