--修复修改鉴权用户

This commit is contained in:
lai
2023-09-22 17:34:58 +08:00
parent f10bc91bed
commit c1541976ff
2 changed files with 3 additions and 3 deletions

View File

@@ -61,9 +61,9 @@ export function getAuth(neId: string, imsi: string) {
* @param data 鉴权对象
* @returns object
*/
export function updateAuth(data: Record<string, any>) {
export function updateAuth(data: Record<string, any>,neID:string) {
return request({
url: `/udmUserManage/v1/auth/${data.neId}`,
url: `/udmUserManage/v1/auth/${neID}`,
method: 'put',
data: data,
});