This commit is contained in:
jxxghp
2025-03-22 09:27:27 +08:00
parent 30276d5022
commit a15afabfa7
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -138,7 +138,7 @@ onMounted(() => {
<span class="text-orange-700 ms-2 text-sm">{{ torrent?.peers }}</span> <span class="text-orange-700 ms-2 text-sm">{{ torrent?.peers }}</span>
</VListItemTitle> </VListItemTitle>
</VListItem> </VListItem>
<VListItem> <VListItem v-if="torrent?.description">
<template #prepend> <template #prepend>
<VIcon icon="mdi-subtitles-outline"></VIcon> <VIcon icon="mdi-subtitles-outline"></VIcon>
</template> </template>
@@ -146,7 +146,7 @@ onMounted(() => {
<span class="text-body-1 whitespace-break-spaces">{{ torrent?.description }}</span> <span class="text-body-1 whitespace-break-spaces">{{ torrent?.description }}</span>
</VListItemTitle> </VListItemTitle>
</VListItem> </VListItem>
<VListItem> <VListItem v-if="torrent?.size">
<template #prepend> <template #prepend>
<VIcon icon="mdi-database"></VIcon> <VIcon icon="mdi-database"></VIcon>
</template> </template>
@@ -164,7 +164,7 @@ onMounted(() => {
<VSelect <VSelect
v-model="selectedDownloader" v-model="selectedDownloader"
:items="downloaderOptions" :items="downloaderOptions"
label="指定下载器" label="下载器(默认)"
variant="underlined" variant="underlined"
placeholder="留空默认" placeholder="留空默认"
/> />
@@ -173,7 +173,7 @@ onMounted(() => {
<VCombobox <VCombobox
v-model="selectedDirectory" v-model="selectedDirectory"
:items="targetDirectories" :items="targetDirectories"
label="指定保存目录" label="保存目录(自动)"
placeholder="留空自动匹配" placeholder="留空自动匹配"
variant="underlined" variant="underlined"
/> />
+1 -1
View File
@@ -56,7 +56,7 @@ export const SystemNavMenus = [
icon: 'mdi-state-machine', icon: 'mdi-state-machine',
to: '/workflow', to: '/workflow',
header: '订阅', header: '订阅',
admin: false, admin: true,
footer: false, footer: false,
}, },
{ {