Skip to content

Commit

Permalink
增加删除种子缓存按钮
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuo894 committed Oct 9, 2024
1 parent 9329e5e commit 9f9c2a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/src/home/Bgm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ let list = ref([])
let search = () => {
searchLoading.value = true
api.get('/api/bgm?name=' + name.value)
api.get('api/bgm?name=' + name.value)
.then(res => {
list.value = res.data
})
Expand Down
2 changes: 1 addition & 1 deletion ui/src/home/Items.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ let load = () => {
}
let delTorrent = (item) => {
api.del(`torrent?id=${ani.id}&infoHash=${item['infoHash']}`)
api.del(`api/torrent?id=${ani.id}&infoHash=${item['infoHash']}`)
.then(res => {
ElMessage.success(res.message)
load()
Expand Down

0 comments on commit 9f9c2a9

Please sign in to comment.