Files
yunxinwei-uniapp/websoft/api/user.js
2023-08-04 13:04:21 +08:00

15 lines
270 B
JavaScript

import http from './index.js';
// 获取用户资料
export const getUser = (params) => http.get('/auth/user', {params})
// 修改用户资料
export const updateUser = (data) => http.post('/open/login-alipay/update', data)
export default {
getUser,
updateUser
}