feat: UDM-auth数据导出按钮权限定义

This commit is contained in:
TsMask
2025-09-28 18:16:11 +08:00
parent dfa8539b9b
commit 4bb5a99b37
2 changed files with 56 additions and 5 deletions

View File

@@ -140,3 +140,17 @@ export function exportUDMAuth(data: Record<string, any>) {
timeout: 180_000,
});
}
/**
* UDM鉴权用户导出DecAuth
* @param neId 网元ID
* @returns bolb
*/
export function exportUDMDecAuth(neId: string) {
return request({
url: `/neData/udm/auth/export-dec?neId=${neId}`,
method: 'get',
responseType: 'blob',
timeout: 180_000,
});
}