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

This commit is contained in:
TsMask
2025-09-28 19:31:42 +08:00
parent 22b0b7e204
commit b1d0771d56
2 changed files with 42 additions and 0 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,
});
}