feat: 调整SMF在线用户列表数据补充显示imsi备注标记

This commit is contained in:
TsMask
2024-09-19 11:49:30 +08:00
parent 678ff2d09d
commit af1ce32063
2 changed files with 30 additions and 19 deletions

View File

@@ -40,3 +40,16 @@ export function exportSMFDataCDR(data: Record<string, any>) {
timeout: 60_000,
});
}
/**
* SMF-在线订阅用户列表信息
* @param query 查询参数
* @returns object
*/
export function listSMFSubscribers(query: Record<string, any>) {
return request({
url: '/neData/smf/subscribers',
method: 'get',
params: query,
});
}