You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
480 B

//请求工具参考https://ext.dcloud.net.cn/plugin?id=392
const { http } = uni.$u
//获取用户信息
export const getUserInfo = params => http.get('/member/user/get', params)
//修改用户头像
export const updateAvatar = filePath =>
http.upload('/member/user/update-avatar', {
name: 'avatarFile',
fileType: 'image',
filePath: filePath
})
//修改用户昵称
export const updateNickname = params => http.put('/member/user/update-nickname', {}, { params })