实名认证添加状态过程

This commit is contained in:
cbb
2026-01-05 17:50:18 +08:00
parent 42eba945e8
commit 24731d1949
10 changed files with 489 additions and 12 deletions

View File

@@ -53,9 +53,9 @@ export const getUserPayPwd = () => {
/**
* 添加/修改支付密码
* @param {*} data
* @param {*} method post 添加 put 修改
* @returns
* @param {*} data
* @param {*} method post 添加 put 修改
* @returns
*/
export const updateUserPayPwd = (data, method = 'post') => {
return http({
@@ -125,6 +125,14 @@ export const getUserThirdPay = id => {
})
}
/** 获取第三方支付列表 */
export const getUserThirdPayList = () => {
return http({
url: '/api/service/userPayment/list',
method: 'get'
})
}
/** 获取身份证信息 */
export const getUserIdCard = () => {
return http({
@@ -141,3 +149,28 @@ export const addUserIdCard = data => {
data
})
}
/** 获取提现配置详细信息 */
export const getUserWithdrawConfig = id => {
return http({
url: `/api/service/appWithdrawalConfig/${id}`,
method: 'get'
})
}
/** 获取用户积分详细信息 */
export const getUserIntegral = () => {
return http({
url: `/api/system/userPoints/details`,
method: 'get'
})
}
/** 添加提现 */
export const addUserWithdraw = data => {
return http({
url: '/api/service/SerAppUserWithdrawal',
method: 'post',
data
})
}