fix: 终端UDM数据勾选导出和勾选删除

This commit is contained in:
TsMask
2023-12-25 20:56:43 +08:00
parent 864be2ba3b
commit dd14a32329
5 changed files with 273 additions and 50 deletions

View File

@@ -111,9 +111,9 @@ export function batchAuth(data: Record<string, any>) {
* @param data 鉴权对象
* @returns object
*/
export function delAuth(neId: string, data: Record<string, any>) {
export function delAuth(neId: string, imsi: string) {
return request({
url: `/ne/udm/auth/${neId}/${data.imsi}`,
url: `/ne/udm/auth/${neId}/${imsi}`,
method: 'delete',
});
}