|
@ -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 }) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|