fix dialogs

This commit is contained in:
jxxghp
2023-10-16 06:58:09 +08:00
parent 5a3673efc6
commit c52ad73101
5 changed files with 16 additions and 16 deletions

View File

@@ -234,10 +234,10 @@ const dropdownItems = ref([
</VCardText>
</VCard>
<!-- 插件配置页面 -->
<VBottomSheet
<VDialog
v-model="pluginConfigDialog"
scrollable
inset
max-width="60rem"
>
<VCard
:title="`${props.plugin?.plugin_name} - 配置`"
@@ -265,13 +265,13 @@ const dropdownItems = ref([
</VBtn>
</VCardActions>
</VCard>
</VBottomSheet>
</VDialog>
<!-- 插件详情页面 -->
<VBottomSheet
<VDialog
v-model="pluginInfoDialog"
scrollable
inset
max-width="80rem"
>
<VCard
:title="`${props.plugin?.plugin_name}`"
@@ -300,7 +300,7 @@ const dropdownItems = ref([
</VBtn>
</VCardActions>
</VCard>
</VBottomSheet>
</VDialog>
</template>
<style lang="scss" scoped>

View File

@@ -143,9 +143,9 @@ async function transfer() {
</script>
<template>
<VBottomSheet
<VDialog
scrollable
inset
max-width="60rem"
>
<VCard
:title="`${props.path ? `整理 - ${props.path}` : `整理 - 共 ${props.logids?.length} 条记录`}`"
@@ -305,5 +305,5 @@ async function transfer() {
@close="tmdbSelectorDialog = false"
/>
</VDialog>
</VBottomSheet>
</VDialog>
</template>

View File

@@ -119,9 +119,9 @@ async function updateSiteInfo() {
</script>
<template>
<VBottomSheet
inset
<VDialog
scrollable
max-width="60rem"
>
<VCard
:title="`${props.oper === 'add' ? '新增' : '编辑'}站点${props.oper !== 'add' ? ` - ${siteForm.name}` : ''}`"
@@ -270,5 +270,5 @@ async function updateSiteInfo() {
</VBtn>
</VCardActions>
</VCard>
</VBottomSheet>
</VDialog>
</template>

View File

@@ -219,9 +219,9 @@ onMounted(async () => {
</script>
<template>
<VBottomSheet
inset
<VDialog
scrollable
max-width="60rem"
>
<VCard
:title="`编辑订阅 - ${subscribeForm.name} ${subscribeForm.season ? `第 ${subscribeForm.season} 季` : ''}`"
@@ -351,5 +351,5 @@ onMounted(async () => {
</VBtn>
</VCardActions>
</VCard>
</VBottomSheet>
</VDialog>
</template>