提现功能需要添加

This commit is contained in:
bobobobo
2026-01-04 23:35:06 +08:00
parent a4ae562396
commit 42eba945e8
58 changed files with 4825 additions and 1015 deletions

View File

@@ -34,6 +34,15 @@ export const getUserData = () => {
})
}
/** 修改用户信息 */
export const updateUserData = data => {
return http({
url: '/api/user/edit',
method: 'put',
data
})
}
/** 获取用户地址列表 */
export const getUserAddress = (data, loading = true) => {
return http({
@@ -128,3 +137,4 @@ export const getTencentUserSig = () => {
method: 'get'
})
}