/* * @Description: 受害者视角分析 * @Author: tqh * @Date: 2023-6-5 */ import { http } from "@/utils/https"; /** * @description: 获取列表 */ export const getPage = (data) => { return http.get("/analysisCenter/victimPerspective/page", data); }; /** * @description:事件类型统计TOP10 */ export const getEventCategoryTop10 = (data) => { return http.get("/analysisCenter/victimPerspective/eventCategoryTop10", data); }; /** * @description:事件名称统计TOP10 */ export const getEventNameTop10 = (data) => { return http.get("/analysisCenter/victimPerspective/eventNameTop10", data); }; /** * @description:攻击者TOP10 */ export const getAttackerTop10 = (data) => { return http.get("/analysisCenter/victimPerspective/attackerTop10", data); }; /** * @description: 攻击链阶段分布 */ export const getKillChainDistribution = (data) => { return http.get("/analysisCenter/victimPerspective/killChainDistribution", data); };