/* * @Description: 文件还原检测 * @Author: tqh * @Date: 2023-3-20 */ import { http } from "@/utils/https"; /** * @description: 获取列表 */ export const getFetchList = (data) => { return http.get("/fileUploadCheck/page", data); }; /** * @description: 批量导出 */ export const fetchSomeExport = (data) => { return http.post("/fileUploadCheck/export", data, { responseType: "blob", }); } /** * @description: 文件上传 */ export const addUploadFile = (params) => { return http.post("/fileUploadCheck/fileUpload", params, { headers: { "Content-Type": "multipart/form-data", }, }); };