个人中心账户信息功能开发

This commit is contained in:
唐明明
2022-12-27 17:42:15 +08:00
parent b141c6cd97
commit c3e137f302
14 changed files with 847 additions and 428 deletions

View File

@@ -79,6 +79,27 @@ const eSigns = data => {
})
}
// 账户信息 - 基础资料
const userInfoBase = () => {
return request({
url : 'user/base',
})
}
// 账户信息 - 机构列表
const userInfoBanks = () => {
return request({
url : 'user/base/banks',
})
}
// 账户信息 - 机构详情
const userInfoBank = id => {
return request({
url : 'user/base/' + id + '/bank',
})
}
export {
relations,
code,
@@ -88,5 +109,8 @@ export {
certified,
certification,
identityOcr,
eSigns
eSigns,
userInfoBase,
userInfoBanks,
userInfoBank
}