标签管理

This commit is contained in:
WangHao
2021-10-10 21:33:06 +08:00
parent e4213193fe
commit 3e9cef511a
4 changed files with 119 additions and 25 deletions

View File

@ -18,6 +18,15 @@ export function listByUserLike(query) {
})
}
// 新增书签管理
export function addTagByUser(data) {
return request({
url: '/system/tag/addByUser',
method: 'post',
data: data
})
}