mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-12 02:21:06 +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,
|
||||
},
|
||||
{
|
||||
title: '正在下载',
|
||||
title: '下载管理',
|
||||
icon: 'mdi-download-outline',
|
||||
to: '/downloading',
|
||||
header: '整理',
|
||||
admin: false,
|
||||
},
|
||||
{
|
||||
title: '历史记录',
|
||||
title: '整理刮削',
|
||||
icon: 'mdi-history',
|
||||
to: '/history',
|
||||
header: '整理',
|
||||
@@ -123,7 +123,7 @@ export const UserfulMenus = [
|
||||
to: 'setting?tab=words',
|
||||
},
|
||||
{
|
||||
title: '历史记录',
|
||||
title: '整理刮削',
|
||||
icon: 'mdi-history',
|
||||
to: 'history',
|
||||
},
|
||||
|
||||
@@ -9,6 +9,7 @@ import { useRoute } from 'vue-router'
|
||||
import router from '@/router'
|
||||
import { useDisplay } from 'vuetify'
|
||||
import { storageDict } from '@/api/constants'
|
||||
import { VIcon } from 'vuetify/lib/components/index.mjs'
|
||||
|
||||
// APP
|
||||
const display = useDisplay()
|
||||
@@ -361,7 +362,6 @@ onMounted(fetchData)
|
||||
<VCardItem>
|
||||
<VCardTitle>
|
||||
<VRow>
|
||||
<VCol cols="4" md="6"> 历史记录 </VCol>
|
||||
<VCol cols="8" md="6" class="flex">
|
||||
<VCombobox
|
||||
key="search_navbar"
|
||||
@@ -369,7 +369,7 @@ onMounted(fetchData)
|
||||
:items="searchHintList"
|
||||
class="text-disabled"
|
||||
density="compact"
|
||||
label="搜索目录、状态"
|
||||
label="搜索历史记录"
|
||||
prepend-inner-icon="mdi-magnify"
|
||||
variant="solo-filled"
|
||||
single-line
|
||||
@@ -379,6 +379,11 @@ onMounted(fetchData)
|
||||
clearable
|
||||
/>
|
||||
</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>
|
||||
</VCardTitle>
|
||||
</VCardItem>
|
||||
|
||||
@@ -402,7 +402,14 @@ onDeactivated(() => {
|
||||
<div class="d-flex flex-wrap gap-4 mt-4">
|
||||
<VBtn type="submit" @click="saveBasicSettings"> 保存 </VBtn>
|
||||
<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>
|
||||
</VForm>
|
||||
</VCardText>
|
||||
|
||||
Reference in New Issue
Block a user