受众添加成员逻辑

This commit is contained in:
weixiaobo@boe.com.cn
2023-07-30 19:39:20 +08:00
parent 1cef1f4fa3
commit f903590f54
2 changed files with 495 additions and 1 deletions

View File

@@ -109,4 +109,20 @@ export const getAudienceMemberList = (obj) =>
export const updateAudienceMember = (obj) =>
http.post("/audience/update", obj, {
headers: { 'Content-Type':'application/json', },
});
// 受众成员组织列表
export const getAudienceOrgList = (obj) =>
http.post("/org/list", obj, {
headers: { 'Content-Type':'application/json', },
});
// 受众成员组织列表
export const getAudienceOrgInfo = (obj) =>
http.post("/org/info", obj, {
headers: { 'Content-Type':'application/json', },
});
// 受众成员可选列表
export const getAudienceUserList = (obj) =>
http.post("/user/list", obj, {
headers: { 'Content-Type':'application/json', },
});