import request from "../request"; //初访重访情况 export function getFirstAndRepeatMail(body) { return request.post({ url: `/datav/mailVisits/getFirstAndRepeatMail`, body }); } //总览数据 export function getAllMailCount(body) { return request.post({ url: `/datav/mailVisits/getAllMailCount`, body }); } // 地图数据 export function getMailMapIcon(body) { return request.post({ url: `/datav/mailVisits/getMailMapIcon`, body }); } export function getMailTrend(year) { return request.get({ url: `/datav/mailVisits/getMailTrend?year=${year}` }); } //群众集访情况 export function getEntanglementAndMassMail(body) { return request.post({ url: `/datav/mailVisits/getEntanglementAndMassMail`, body }); } //追责问责情况 export function getResultCount(body){ return request.post({ url:`/datav/mailVisits/getResultCount`, body }) }