同步
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user