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.
25 lines
739 B
25 lines
739 B
5 years ago
|
import request from '../utils/rerquest'
|
||
|
|
||
|
/**
|
||
|
* 用户分析接口
|
||
|
* @param {number} pageIndex 页码
|
||
|
* @param {number} pageSize 页容量
|
||
|
* @param {string} deptId 部门Id
|
||
|
* @param {string} deptType 机构类型
|
||
|
* @param {string} orderType 排序类型:1用户,2党员,3大于50岁党员,4小于50岁党员
|
||
|
* @param {string} orderStyle 排序方式:1正序,2倒序
|
||
|
*/
|
||
|
export function getUserSituationList ({ pageIndex, pageSize, deptId, deptType, orderType, orderStyle }: GetUserSituationListApiOption) {
|
||
|
return request({
|
||
|
method: 'GET',
|
||
|
url: 'cloudAnalysis/user/getUserSituationList',
|
||
|
options: {
|
||
|
pageIndex,
|
||
|
pageSize,
|
||
|
deptId,
|
||
|
deptType,
|
||
|
orderType,
|
||
|
orderStyle
|
||
|
}
|
||
|
})
|
||
|
}
|