You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
992 B
51 lines
992 B
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 |
|
}) |
|
|
|
}
|
|
|