This commit is contained in:
唐明明
2023-02-13 11:58:29 +08:00
parent da7b903547
commit 8d8c14ec66
33 changed files with 879 additions and 90 deletions

View File

@@ -110,6 +110,29 @@ const getRegion = id => {
})
}
// 确认绑定关系
const relationsVerify = (invite, type) => {
return request({
url: 'user/relations/verify',
data: {
type,
invite
}
})
}
// 绑定分享关系
const relationsBind = (invite, type) => {
return request({
url: 'user/relations/bind',
data: {
type,
invite
},
method: 'POST'
})
}
export {
relations,
code,
@@ -123,5 +146,7 @@ export {
userInfoBase,
userInfoBanks,
userInfoBank,
getRegion
getRegion,
relationsVerify,
relationsBind
}