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

49 lines
1.3 KiB

import request from '../utils/rerquest'
/**
*
*/
export function getStreetList() {
return request({
method: 'GET',
url: 'cloudAnalysis/home/getStreetList',
})
}
/**
top10
@param {string} deptId id
@param {string} orderType 12.
@param {number} someMonthsType 1:最近1个月2:最近3个月3:最近半年4:最近一年
*
*/
export function getOfficerEvaTop10({ deptId, orderType, someMonthsType }: RequestAPIOptionsLogin) {
return request({
method: 'GET',
url: 'cloudAnalysis/evaluate/getOfficerEvaTop10',
options: {
deptId,
orderType,
someMonthsType,
}
})
}
/**
@param {string} officerId id
@param {string} someMonthsType 1:最近1个月2:最近3个月3:最近半年4:最近一年
@param {string} evaluateType 1.2.
*
*/
export function getOfficerEvaDetail({ officerId, someMonthsType ,evaluateType}: RequestAPIOptionsLogin) {
return request({
method: 'GET',
url: 'cloudAnalysis/evaluate/getOfficerEvaDetail',
options: {
officerId,
someMonthsType,
evaluateType,
}
})
}