/* * @Description: 互联网僵木糯 接口 * @Author: tqh */ import { http } from "@/utils/https"; /** * @description: 获取列表查询 * @param {number} pageSize * @param {number} pageNum */ export const getFetchList = (data) => { return http.get("/threatIntelligence/queryThreatIntelligence", data); }; /** * @description: 列表导出 * @param {} */ export const exportRequest = (params) => { return http.post("/threatIntelligence/export", params, { responseType: "blob", }); };