diff --git a/src/components/cards/SiteCard.vue b/src/components/cards/SiteCard.vue index efc51b0e..5c9f7584 100644 --- a/src/components/cards/SiteCard.vue +++ b/src/components/cards/SiteCard.vue @@ -647,6 +647,7 @@ onMounted(() => { 查看详情 diff --git a/src/components/cards/TorrentCard.vue b/src/components/cards/TorrentCard.vue index 53811a7c..a9593f1d 100644 --- a/src/components/cards/TorrentCard.vue +++ b/src/components/cards/TorrentCard.vue @@ -122,26 +122,6 @@ function getVolumeFactorClass(downloadVolume: number, uploadVolume: number) { onMounted(() => { getSiteIcon() }) - -// 弹出菜单 -const dropdownItems = ref([ - { - title: '查看详情', - value: 1, - props: { - prependIcon: 'mdi-information', - click: openTorrentDetail, - }, - }, - { - title: '下载种子', - value: 2, - props: { - prependIcon: 'mdi-download', - click: downloadTorrentFile, - }, - }, -])