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

12 lines
221 B

2 months ago
  1. import request from '@/utils/request'
  2. // 更新用户信息
  3. export const updateUserInfo = (data) => {
  4. return request({
  5. url: '/applet/info/updateInfo',
  6. headers: {
  7. isToken: false
  8. },
  9. method: 'post',
  10. data
  11. })
  12. }