|
|
|
|
@ -30,13 +30,20 @@ export function getGlobalTrend(year) {
|
|
|
|
|
* 机构问题排名 |
|
|
|
|
* @param year |
|
|
|
|
*/ |
|
|
|
|
export function getOrganizationRank(times) { |
|
|
|
|
return request.get({ |
|
|
|
|
url: `/datav/dataGlobalScreen/getOrganizationRank?beginTime=${times[0]}&endTime=${times[1]}` |
|
|
|
|
// export function getOrganizationRank(times) {
|
|
|
|
|
// return request.get({
|
|
|
|
|
// url: `/datav/dataGlobalScreen/getOrganizationRank?beginTime=${times[0]}&endTime=${times[1]}`
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
export function getOrganizationRank(body) { |
|
|
|
|
return request.post({ |
|
|
|
|
url: `/datav/dataGlobalScreen/getOrganizationRank`, |
|
|
|
|
body |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 业务类型占比 |
|
|
|
|
* @param year |
|
|
|
|
|