是否订阅接口对接

This commit is contained in:
付民康
2025-03-28 14:47:07 +08:00
parent 0a14df5293
commit 629b16ca8a
2 changed files with 19 additions and 1 deletions

View File

@@ -286,3 +286,13 @@ export const getLicenseDetail = ({ id }): Promise<any> => {
})
);
};
// 是否订阅
export const alertIsSubscribe = (data): Promise<any> => {
return reqCatchV2(() =>
request({
url: `/api/v1/alert/isSubscribe`,
method: 'POST',
data,
})
);
};