/* * @Description: 传播日志 接口 * @Author: tqh * @FilePath: \yuan-safety-manage-browser\src\api\monitoring\maliciousFile/SpreadThelog.ts * @Date: 2022-08-31 17:20 */ import { http } from "@/utils/https"; /** * @description: 获取表格数据 * @param {number} page * @param {number} size */ export const getList = (data) => { return http.get("/networkSafeDetect/maliciousCodeFile/queryAllList", data); }; /** * @description: 获取详情 * @param {number} page * @param {number} size */ export const getDetail = (data) => { return http.get("/networkSafeDetect/maliciousCodeFile/queryMaliciousFileDetails", data); }; /** * @description: 导出 * @param {} */ export const exportRequest = (params) => { return http.post("/networkSafeDetect/maliciousCodeFile/download", params, { responseType: "blob", }); };