猫妈狗爸伴宠师小程序前端代码
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.
 
 
 
 

13 lines
221 B

import request from '@/utils/request'
// 更新用户信息
export const updateUserInfo = (data) => {
return request({
url: '/applet/info/updateInfo',
headers: {
isToken: false
},
method: 'post',
data
})
}