榆山数据端小程序
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.
 
 

44 lines
1.1 KiB

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
}
})
}