zouyu
2026-04-28 3115fcc80036ec4bfe3a2cd1128c5fdc82a01f42
src/api/business/unqualifiedHandler.js
@@ -25,3 +25,20 @@
    data: query,
  });
}
//查看OA流程
export function getOaFlow(query) {
  return request({
    url: "/unqualifiedHandler/getOaFlow",
    method: "get",
    params: query,
  });
}
//导出不合格处理记录
export function exportUnqualifiedHandler(query) {
  return request({
    url: "/unqualifiedHandler/exportUnqualifiedHandler",
    method: "get",
    params: query,
    responseType: "blob",
  });
}