完成书签的管理功能

This commit is contained in:
WangHao
2021-11-06 10:51:44 +08:00
parent 5755ac1e57
commit c505a34d56
5 changed files with 112 additions and 25 deletions

View File

@ -27,6 +27,25 @@ export function addTagByUser(data) {
})
}
// 刪除书签
export function deleteTag(id) {
return request({
url: '/system/tag/deleteTag/' + id,
method: 'get'
})
}
// 修改书签管理
export function editByUser(data) {
return request({
url: '/system/tag/editByUser',
method: 'post',
data: data
})
}