mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-07-10 23:13:20 +08:00
refactor(Menu): update menu titles for clarity and consistency
This commit is contained in:
@@ -50,14 +50,14 @@ export const SystemNavMenus = [
|
|||||||
admin: false,
|
admin: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '正在下载',
|
title: '下载管理',
|
||||||
icon: 'mdi-download-outline',
|
icon: 'mdi-download-outline',
|
||||||
to: '/downloading',
|
to: '/downloading',
|
||||||
header: '整理',
|
header: '整理',
|
||||||
admin: false,
|
admin: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '历史记录',
|
title: '整理刮削',
|
||||||
icon: 'mdi-history',
|
icon: 'mdi-history',
|
||||||
to: '/history',
|
to: '/history',
|
||||||
header: '整理',
|
header: '整理',
|
||||||
@@ -123,7 +123,7 @@ export const UserfulMenus = [
|
|||||||
to: 'setting?tab=words',
|
to: 'setting?tab=words',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '历史记录',
|
title: '整理刮削',
|
||||||
icon: 'mdi-history',
|
icon: 'mdi-history',
|
||||||
to: 'history',
|
to: 'history',
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import { useRoute } from 'vue-router'
|
|||||||
import router from '@/router'
|
import router from '@/router'
|
||||||
import { useDisplay } from 'vuetify'
|
import { useDisplay } from 'vuetify'
|
||||||
import { storageDict } from '@/api/constants'
|
import { storageDict } from '@/api/constants'
|
||||||
|
import { VIcon } from 'vuetify/lib/components/index.mjs'
|
||||||
|
|
||||||
// APP
|
// APP
|
||||||
const display = useDisplay()
|
const display = useDisplay()
|
||||||
@@ -361,7 +362,6 @@ onMounted(fetchData)
|
|||||||
<VCardItem>
|
<VCardItem>
|
||||||
<VCardTitle>
|
<VCardTitle>
|
||||||
<VRow>
|
<VRow>
|
||||||
<VCol cols="4" md="6"> 历史记录 </VCol>
|
|
||||||
<VCol cols="8" md="6" class="flex">
|
<VCol cols="8" md="6" class="flex">
|
||||||
<VCombobox
|
<VCombobox
|
||||||
key="search_navbar"
|
key="search_navbar"
|
||||||
@@ -369,7 +369,7 @@ onMounted(fetchData)
|
|||||||
:items="searchHintList"
|
:items="searchHintList"
|
||||||
class="text-disabled"
|
class="text-disabled"
|
||||||
density="compact"
|
density="compact"
|
||||||
label="搜索目录、状态"
|
label="搜索历史记录"
|
||||||
prepend-inner-icon="mdi-magnify"
|
prepend-inner-icon="mdi-magnify"
|
||||||
variant="solo-filled"
|
variant="solo-filled"
|
||||||
single-line
|
single-line
|
||||||
@@ -379,6 +379,11 @@ onMounted(fetchData)
|
|||||||
clearable
|
clearable
|
||||||
/>
|
/>
|
||||||
</VCol>
|
</VCol>
|
||||||
|
<VCol cols="4" md="6" class="text-end">
|
||||||
|
<VBtn color="primary" prepend-icon="mdi-tray-full" append-icon="mdi-dots-horizontal">
|
||||||
|
<span v-if="display.mdAndUp.value" class="ms-2">整理队列</span>
|
||||||
|
</VBtn>
|
||||||
|
</VCol>
|
||||||
</VRow>
|
</VRow>
|
||||||
</VCardTitle>
|
</VCardTitle>
|
||||||
</VCardItem>
|
</VCardItem>
|
||||||
|
|||||||
@@ -402,7 +402,14 @@ onDeactivated(() => {
|
|||||||
<div class="d-flex flex-wrap gap-4 mt-4">
|
<div class="d-flex flex-wrap gap-4 mt-4">
|
||||||
<VBtn type="submit" @click="saveBasicSettings"> 保存 </VBtn>
|
<VBtn type="submit" @click="saveBasicSettings"> 保存 </VBtn>
|
||||||
<VSpacer />
|
<VSpacer />
|
||||||
<VBtn color="warning" @click="advancedDialog = true" append-icon="mdi-dots-horizontal"> 高级设置 </VBtn>
|
<VBtn
|
||||||
|
color="error"
|
||||||
|
@click="advancedDialog = true"
|
||||||
|
prepend-icon="mdi-cog"
|
||||||
|
append-icon="mdi-dots-horizontal"
|
||||||
|
>
|
||||||
|
高级设置
|
||||||
|
</VBtn>
|
||||||
</div>
|
</div>
|
||||||
</VForm>
|
</VForm>
|
||||||
</VCardText>
|
</VCardText>
|
||||||
|
|||||||
Reference in New Issue
Block a user