完成发现,个人中心

This commit is contained in:
cbb
2026-01-06 16:35:57 +08:00
parent 07cd0f6b37
commit 578eafafa1
23 changed files with 740 additions and 61 deletions

View File

@@ -141,11 +141,16 @@ export const getUserIdCard = () => {
})
}
/** 添加身份证 */
export const addUserIdCard = data => {
/**
* 添加/修改身份证
* @param {*} data
* @param {*} method post 添加 put 修改
* @returns
*/
export const addUserIdCard = (data, method = 'post') => {
return http({
url: '/api/service/userVerification',
method: 'post',
method,
data
})
}
@@ -174,3 +179,21 @@ export const addUserWithdraw = data => {
data
})
}
/** 获取提现列表 */
export const getUserWithdrawList = data => {
return http({
url: '/api/service/SerAppUserWithdrawal/list',
method: 'get',
data
})
}
/** 交易记录列表 */
export const getUserTradeRecordList = data => {
return http({
url: '/api/system/logPoints/list',
method: 'get',
data
})
}