受众的接口处理

This commit is contained in:
daihh
2023-02-21 11:56:06 +08:00
parent 6fcbe1408c
commit 3f389b7c8a
3 changed files with 32 additions and 15 deletions

View File

@@ -40,6 +40,13 @@ const getUserCrowds = function() {
return ajax.postJson(baseURL,'/audience/userAudiences',{});
}
/**
* 获取用户过滤后的受众,只是查询已发布的
* {"page":1,pageSize:100,"keyword":""}
*/
const getUserAudiences = function(data) {
return ajax.postJson(baseURL,'/audience/userAudiencesFilter',data);
}
/**
* 获取hrbp数据
@@ -63,6 +70,7 @@ export default {
findOrgTreeByOrgId,
getUserInfoById,
getUserCrowds,
getUserAudiences,
getOrgHrbpInfo,
modifyPassword
}