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:
@@ -480,8 +480,11 @@ function getYear(airDate: string) {
|
|||||||
inset
|
inset
|
||||||
scrollable
|
scrollable
|
||||||
>
|
>
|
||||||
<VCard :title="`订阅 - ${props.media?.title}`">
|
<VCard>
|
||||||
<DialogCloseBtn @click="subscribeSeasonDialog = false" />
|
<DialogCloseBtn @click="subscribeSeasonDialog = false" />
|
||||||
|
<VCardTitle class="pe-10">
|
||||||
|
订阅 - {{ props.media?.title }}
|
||||||
|
</VCardTitle>
|
||||||
<VCardText>
|
<VCardText>
|
||||||
<VList
|
<VList
|
||||||
v-model="seasonsSelected"
|
v-model="seasonsSelected"
|
||||||
|
|||||||
@@ -84,6 +84,7 @@ async function searchMedias() {
|
|||||||
variant="solo"
|
variant="solo"
|
||||||
append-inner-icon="mdi-magnify"
|
append-inner-icon="mdi-magnify"
|
||||||
flat
|
flat
|
||||||
|
class="mx-1"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
@click:append-inner="searchMedias"
|
@click:append-inner="searchMedias"
|
||||||
@keydown.enter="searchMedias"
|
@keydown.enter="searchMedias"
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ const TransferDict: { [key: string]: string } = {
|
|||||||
// 删除历史记录
|
// 删除历史记录
|
||||||
async function removeHistory(item: TransferHistory) {
|
async function removeHistory(item: TransferHistory) {
|
||||||
currentHistory.value = item
|
currentHistory.value = item
|
||||||
confirmTitle.value = `确认删除 ${item.title} ?`
|
confirmTitle.value = `确认删除 ${item.title} ${item.seasons}${item.episodes} ?`
|
||||||
deleteConfirmDialog.value = true
|
deleteConfirmDialog.value = true
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -471,9 +471,12 @@ const dropdownItems = ref([
|
|||||||
</vDialog>
|
</vDialog>
|
||||||
<!-- 底部弹窗 -->
|
<!-- 底部弹窗 -->
|
||||||
<VBottomSheet v-model="deleteConfirmDialog" inset>
|
<VBottomSheet v-model="deleteConfirmDialog" inset>
|
||||||
<VCard :title="confirmTitle" class="text-center">
|
<VCard class="text-center">
|
||||||
<DialogCloseBtn @click="deleteConfirmDialog = false" />
|
<DialogCloseBtn @click="deleteConfirmDialog = false" />
|
||||||
<div class="d-flex flex-column flex-md-row justify-center mb-3">
|
<VCardTitle class="pe-10">
|
||||||
|
{{ confirmTitle }}
|
||||||
|
</VCardTitle>
|
||||||
|
<div class="d-flex flex-column flex-md-row justify-center my-3">
|
||||||
<VBtn
|
<VBtn
|
||||||
color="info"
|
color="info"
|
||||||
class="mb-2 mx-2"
|
class="mb-2 mx-2"
|
||||||
|
|||||||
Reference in New Issue
Block a user