1
2
3
4
5
6
7
8
9
10
11
12
13
14
| //请求工具参考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 })
|
|