提交移动端的修改

This commit is contained in:
daihh
2023-03-01 16:27:38 +08:00
parent 72b9a18206
commit 8d2a270fa7
6 changed files with 222 additions and 5 deletions

View File

@@ -55,6 +55,11 @@ const modifyPassword = function(data) {
return ajax.postJson('/user/resetPassword',data);
}
/**获取加入的受众的id集合*/
const getInAudienceIds = function() {
return ajax.post(baseURL,'/audience/audienceByUser',{});
}
export default {
userParentOrg,
findOrgsByKeyword,
@@ -63,5 +68,6 @@ export default {
getUserInfoById,
getUserCrowds,
getOrgHrbpInfo,
modifyPassword
modifyPassword,
getInAudienceIds
}