wlzboy
2025-09-21 b5b16a26de0d84d7b5fb69b584377bdc3582e3ab
ruoyi-ui/src/api/system/callbacklog.js
@@ -44,9 +44,10 @@
}
// 重试回调
export function retryCallbacklog(ids) {
export function retryCallbacklog(ids, config = {}) {
  return request({
    url: '/system/callbacklog/retry/' + ids,
    method: 'post'
    method: 'post',
    ...config  // 合并配置
  })
}