import request from '../utils/rerquest' /** * 网格满意度排名 * @param {orderType} String 排序方式(1.正序Desc,2.倒序Asc) */ export function getGridEvaList({ orderType }: GetgovernRankingApiOption) { return request({ method: 'GET', url: 'cloudAnalysis/item/getGridEvaList', options: { orderType } }) } /** * 网格自治排行 * @param {orderType} String 排序方式(1.正序Desc,2.倒序Asc) */ export function getGridByselfStatistics({ orderType }: GetgovernRankingApiOption) { return request({ method: 'GET', url: 'cloudAnalysis/item/getGridByselfStatistics', options: { orderType } }) } /** * 部门报道排名接口 * @param {orderType} String 排序方式(1.正序Desc,2.倒序Asc) * @param {deptKey} String 部门类型(1.街道,2.社区) */ export function getDeptStatisticsList({ orderType, deptKey}: GetgovernRankingApiOption) { return request({ method: 'GET', url: 'cloudAnalysis/item/getDeptStatisticsList', options: { orderType, deptKey } }) }