feat : 用户管理主账号-新增绑定账号功能

This commit is contained in:
2024-06-25 18:13:43 +08:00
parent 65b8af3e3e
commit bbb8705cee
3 changed files with 74 additions and 5 deletions

View File

@@ -185,3 +185,17 @@ export const unbindAllUserByPost = (postId) => {
}
})
}
export const bindAccount=(data)=>{
return request({
url: '/admin/mosr/user/bind/account',
method: 'post',
data
})
}
export const getBindAccount=(userId)=>{
return request({
url: `/admin/mosr/user/bind/account/info/${userId}`,
method: 'get'
})
}