feat: x5初始化

This commit is contained in:
anonymous
2025-01-14 12:10:43 +08:00
parent c3ff2e3f4f
commit 2b43b95fdb
60 changed files with 433 additions and 551 deletions
+25 -2
View File
@@ -1,3 +1,4 @@
import { mergeStep } from '@/utils'
import { http } from '@/utils/http'
// 注册用户
@@ -71,11 +72,12 @@ export const getInvestmentRecordAPI = (data) =>
})
// 查询实名认证
export const getRealNameAuthAPI = () =>
export const getRealNameAuthAPI = mergeStep(() =>
http({
url: '/api/user/finduserauth',
method: 'POST',
})
}),
)
// 实名认证
export const realNameAuthAPI = (data) =>
@@ -206,3 +208,24 @@ export const getYongMoneyTransferAPI = (data) =>
method: 'POST',
data,
})
// 轮播图
export const getBannerAPI = () =>
http({
url: '/api/index/bannerlist',
method: 'POST',
})
// 银行卡资产恢复列表
export const getBankCardRecoverListAPI = () =>
http({
url: '/api/user/bankassetslist',
method: 'POST',
})
// 银行卡资产恢复
export const getBankCardRecoverAPI = (data) =>
http({
url: '/api/user/userbankassets',
method: 'POST',
data,
})