订阅列表接口对接
This commit is contained in:
@@ -193,3 +193,25 @@ export const getgroupNoticeList = (data): Promise<any> => {
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
// 个人中心-获取订阅列表
|
||||
export const getSubscribeList = (data): Promise<any> => {
|
||||
return reqCatchV2(() =>
|
||||
request({
|
||||
url: `/api/v1/alert/subscribe/list`,
|
||||
method: 'POST',
|
||||
data,
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
// 个人中心-获取组织级订阅列表
|
||||
export const getGroupSubscribeList = (data): Promise<any> => {
|
||||
return reqCatchV2(() =>
|
||||
request({
|
||||
url: `/api/v1/alert/group/subscribe/list`,
|
||||
method: 'POST',
|
||||
data,
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user