mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-06-28 02:51:56 +08:00
fix ui
This commit is contained in:
@@ -480,8 +480,11 @@ function getYear(airDate: string) {
|
||||
inset
|
||||
scrollable
|
||||
>
|
||||
<VCard :title="`订阅 - ${props.media?.title}`">
|
||||
<VCard>
|
||||
<DialogCloseBtn @click="subscribeSeasonDialog = false" />
|
||||
<VCardTitle class="pe-10">
|
||||
订阅 - {{ props.media?.title }}
|
||||
</VCardTitle>
|
||||
<VCardText>
|
||||
<VList
|
||||
v-model="seasonsSelected"
|
||||
|
||||
@@ -84,6 +84,7 @@ async function searchMedias() {
|
||||
variant="solo"
|
||||
append-inner-icon="mdi-magnify"
|
||||
flat
|
||||
class="mx-1"
|
||||
:loading="loading"
|
||||
@click:append-inner="searchMedias"
|
||||
@keydown.enter="searchMedias"
|
||||
|
||||
@@ -132,7 +132,7 @@ const TransferDict: { [key: string]: string } = {
|
||||
// 删除历史记录
|
||||
async function removeHistory(item: TransferHistory) {
|
||||
currentHistory.value = item
|
||||
confirmTitle.value = `确认删除 ${item.title} ?`
|
||||
confirmTitle.value = `确认删除 ${item.title} ${item.seasons}${item.episodes} ?`
|
||||
deleteConfirmDialog.value = true
|
||||
}
|
||||
|
||||
@@ -471,9 +471,12 @@ const dropdownItems = ref([
|
||||
</vDialog>
|
||||
<!-- 底部弹窗 -->
|
||||
<VBottomSheet v-model="deleteConfirmDialog" inset>
|
||||
<VCard :title="confirmTitle" class="text-center">
|
||||
<VCard class="text-center">
|
||||
<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
|
||||
color="info"
|
||||
class="mb-2 mx-2"
|
||||
|
||||
Reference in New Issue
Block a user