mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 15:36:49 +08:00
fix ui
This commit is contained in:
@@ -66,9 +66,7 @@ const tmdbId = ref<number | undefined>()
|
|||||||
const doubanId = ref<string | undefined>()
|
const doubanId = ref<string | undefined>()
|
||||||
|
|
||||||
const tableStyle = computed(() => {
|
const tableStyle = computed(() => {
|
||||||
return appMode
|
return appMode ? '' : 'height: calc(100vh - 21rem - env(safe-area-inset-bottom)'
|
||||||
? 'height: calc(100vh - 21rem - env(safe-area-inset-bottom) - 6.5rem)'
|
|
||||||
: 'height: calc(100vh - 21rem - env(safe-area-inset-bottom)'
|
|
||||||
})
|
})
|
||||||
|
|
||||||
// 调用API加载缓存数据
|
// 调用API加载缓存数据
|
||||||
@@ -268,7 +266,7 @@ onMounted(() => {
|
|||||||
<!-- 筛选框 -->
|
<!-- 筛选框 -->
|
||||||
<VCardText>
|
<VCardText>
|
||||||
<VRow>
|
<VRow>
|
||||||
<VCol cols="12" md="6">
|
<VCol cols="6">
|
||||||
<VTextField
|
<VTextField
|
||||||
v-model="titleFilter"
|
v-model="titleFilter"
|
||||||
:label="t('setting.cache.filterByTitle')"
|
:label="t('setting.cache.filterByTitle')"
|
||||||
@@ -277,7 +275,7 @@ onMounted(() => {
|
|||||||
density="compact"
|
density="compact"
|
||||||
/>
|
/>
|
||||||
</VCol>
|
</VCol>
|
||||||
<VCol cols="12" md="6">
|
<VCol cols="6">
|
||||||
<VSelect
|
<VSelect
|
||||||
v-model="siteFilter"
|
v-model="siteFilter"
|
||||||
:label="t('setting.cache.filterBySite')"
|
:label="t('setting.cache.filterBySite')"
|
||||||
@@ -343,7 +341,7 @@ onMounted(() => {
|
|||||||
|
|
||||||
<!-- 标题列 -->
|
<!-- 标题列 -->
|
||||||
<template #item.title="{ item }">
|
<template #item.title="{ item }">
|
||||||
<div class="d-flex flex-column">
|
<div class="d-flex flex-column min-w-40">
|
||||||
<div class="text-subtitle-2 font-weight-bold">
|
<div class="text-subtitle-2 font-weight-bold">
|
||||||
{{ item.title }}
|
{{ item.title }}
|
||||||
</div>
|
</div>
|
||||||
@@ -422,7 +420,7 @@ onMounted(() => {
|
|||||||
</VCard>
|
</VCard>
|
||||||
|
|
||||||
<!-- 重新识别对话框 -->
|
<!-- 重新识别对话框 -->
|
||||||
<VDialog v-model="reidentifyDialog" scrollable max-width="35rem" :fullscreen="!display.mdAndUp.value">
|
<VDialog v-model="reidentifyDialog" scrollable max-width="35rem">
|
||||||
<VCard>
|
<VCard>
|
||||||
<VCardItem class="py-2">
|
<VCardItem class="py-2">
|
||||||
<template #prepend>
|
<template #prepend>
|
||||||
|
|||||||
Reference in New Issue
Block a user