import { http } from '@/utils/http' import type { ProfileDetail, ProfileParams } from '@/types/member' // 获取个人信息详情 export const getProfileAPI = () => { return http({ url: '/member/profile', method: 'GET', }) } // 修改个人信息 export const putProfileAPI = (data: ProfileParams) => { return http({ url: '/member/profile', method: 'PUT', data, }) }