会员
This commit is contained in:
@@ -35,4 +35,20 @@ export function delUser(id) {
|
||||
url: '/back/user/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
// 获取用户标签
|
||||
export function getUserTags(userId) {
|
||||
return request({
|
||||
url: '/back/user/tags/' + userId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 获取当前登录用户的标签
|
||||
export function getMyTags() {
|
||||
return request({
|
||||
url: '/back/user/myTags',
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user