新增个人中心运营中心

This commit is contained in:
2023-02-14 13:09:51 +08:00
parent 97ea24f85a
commit dfd6b9f88f
7 changed files with 1289 additions and 477 deletions

View File

@@ -133,6 +133,29 @@ const relationsBind = (invite, type) => {
})
}
// 提交运营中心别名
const submitTeamName = (data) => {
return request({
url: 'user/team',
data:data,
method: 'POST'
})
}
// 获取运营中心记录
const getTeam = () => {
return request({
url : 'user/team',
})
}
// 获取运营中心记录
const getTeamLogs = data => {
return request({
url: 'user/team/logs',
data
})
}
export {
relations,
code,
@@ -148,5 +171,8 @@ export {
userInfoBank,
getRegion,
relationsVerify,
relationsBind
relationsBind,
submitTeamName,
getTeam,
getTeamLogs,
}