mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 23:56:42 +08:00
fix ui
This commit is contained in:
@@ -138,7 +138,7 @@ const dropdownItems = ref([
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '媒体详情',
|
title: '详情',
|
||||||
value: 3,
|
value: 3,
|
||||||
props: {
|
props: {
|
||||||
prependIcon: 'mdi-information-outline',
|
prependIcon: 'mdi-information-outline',
|
||||||
@@ -146,7 +146,7 @@ const dropdownItems = ref([
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '文件信息',
|
title: '文件',
|
||||||
value: 4,
|
value: 4,
|
||||||
props: {
|
props: {
|
||||||
prependIcon: 'mdi-file-document-outline',
|
prependIcon: 'mdi-file-document-outline',
|
||||||
|
|||||||
@@ -121,9 +121,11 @@ onMounted(() => {
|
|||||||
<template>
|
<template>
|
||||||
<VDialog max-width="40rem" scrollable>
|
<VDialog max-width="40rem" scrollable>
|
||||||
<VCard>
|
<VCard>
|
||||||
<VCardTitle v-if="title">下载 - {{ title }}</VCardTitle>
|
<VCardItem>
|
||||||
<VCardTitle v-else>确认下载</VCardTitle>
|
<VCardTitle v-if="title">下载 - {{ title }}</VCardTitle>
|
||||||
<DialogCloseBtn @click="emit('close')" />
|
<VCardTitle v-else>确认下载</VCardTitle>
|
||||||
|
<DialogCloseBtn @click="emit('close')" />
|
||||||
|
</VCardItem>
|
||||||
<VDivider />
|
<VDivider />
|
||||||
<VCardText>
|
<VCardText>
|
||||||
<VRow>
|
<VRow>
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
import api from '@/api'
|
import api from '@/api'
|
||||||
import { SubscrbieInfo } from '@/api/types'
|
import { SubscrbieInfo } from '@/api/types'
|
||||||
import { useDisplay } from 'vuetify'
|
import { useDisplay } from 'vuetify'
|
||||||
|
import { VCardTitle } from 'vuetify/lib/components/index.mjs'
|
||||||
|
|
||||||
// 显示器宽度
|
// 显示器宽度
|
||||||
const display = useDisplay()
|
const display = useDisplay()
|
||||||
@@ -77,7 +78,7 @@ onBeforeMount(() => {
|
|||||||
<template>
|
<template>
|
||||||
<VDialog scrollable max-width="80rem" :fullscreen="!display.mdAndUp.value">
|
<VDialog scrollable max-width="80rem" :fullscreen="!display.mdAndUp.value">
|
||||||
<VCard class="rounded-t">
|
<VCard class="rounded-t">
|
||||||
<VCardItem>
|
<VCardItem class="my-2">
|
||||||
<DialogCloseBtn @click="emit('close')" />
|
<DialogCloseBtn @click="emit('close')" />
|
||||||
</VCardItem>
|
</VCardItem>
|
||||||
<VCardText>
|
<VCardText>
|
||||||
|
|||||||
Reference in New Issue
Block a user