/* * @Description: DNS应用异常 接口 * @Author: tqh * @Date: 2022-9-1 09:00 */ import { http } from "@/utils/https"; /** * @description: 获取表格数据 * @param {number} page * @param {number} size */ export const getList = (data) => { return http.get("/networkSafeDetect/domainSafe/abnormalDns/page", data); }; /** * @description: 导出 * @param {} */ export const exportRequest = (params) => { return http.post("/networkSafeDetect/domainSafe/abnormalDns/export", params, { responseType: "blob", }); };