榆山数据端小程序
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.Desc2.Asc
*/
export function getGridEvaList({ orderType }: GetgovernRankingApiOption) {
return request({
method: 'GET',
url: 'cloudAnalysis/item/getGridEvaList',
options: {
orderType
}
})
}
/**
*
* @param {orderType} String 1.Desc2.Asc
*/
export function getGridByselfStatistics({ orderType }: GetgovernRankingApiOption) {
return request({
method: 'GET',
url: 'cloudAnalysis/item/getGridByselfStatistics',
options: {
orderType
}
})
}
/**
*
* @param {orderType} String 1.Desc2.Asc
* @param {deptKey} String 1.2.
*/
export function getDeptStatisticsList({ orderType, deptKey}: GetgovernRankingApiOption) {
return request({
method: 'GET',
url: 'cloudAnalysis/item/getDeptStatisticsList',
options: {
orderType,
deptKey
}
})
}