wms-antdvue/.svn/pristine/d1/d1fbba9d28583f2b99d258343b345dc167219b87.svn-base
2024-11-07 16:33:03 +08:00

13 lines
223 B
Plaintext

import { http } from '@/utils/http/axios';
/**
* @description: 更新用户信息
*/
export function updateProfile(data:any) {
return http.request({
url: '/index/updateProfile',
method: 'PUT',
data
});
}