mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 23:56:42 +08:00
调整对话框最大高度:将PluginCard和SearchBarDialog组件中的对话框最大高度设置为85vh,优化用户界面体验
This commit is contained in:
@@ -439,7 +439,7 @@ watch(
|
|||||||
<ProgressDialog v-if="progressDialog" v-model="progressDialog" :text="progressText" />
|
<ProgressDialog v-if="progressDialog" v-model="progressDialog" :text="progressText" />
|
||||||
|
|
||||||
<!-- 更新日志 -->
|
<!-- 更新日志 -->
|
||||||
<VDialog v-if="releaseDialog" v-model="releaseDialog" width="600" max-height="80vh" scrollable>
|
<VDialog v-if="releaseDialog" v-model="releaseDialog" width="600" max-height="85vh" scrollable>
|
||||||
<VCard :title="t('plugin.updateHistoryTitle', { name: props.plugin?.plugin_name })">
|
<VCard :title="t('plugin.updateHistoryTitle', { name: props.plugin?.plugin_name })">
|
||||||
<VDialogCloseBtn @click="releaseDialog = false" />
|
<VDialogCloseBtn @click="releaseDialog = false" />
|
||||||
<VDivider />
|
<VDivider />
|
||||||
|
|||||||
@@ -302,7 +302,7 @@ onMounted(() => {
|
|||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<VDialog v-model="dialog" max-width="42rem" scrollable>
|
<VDialog v-model="dialog" max-width="42rem" scrollable maxHeight="85vh">
|
||||||
<VCard class="search-dialog">
|
<VCard class="search-dialog">
|
||||||
<!-- 搜索输入框 -->
|
<!-- 搜索输入框 -->
|
||||||
<VCardItem class="pa-4 pa-sm-5 search-box-container">
|
<VCardItem class="pa-4 pa-sm-5 search-box-container">
|
||||||
|
|||||||
@@ -44,7 +44,6 @@ export default {
|
|||||||
VDialog: {
|
VDialog: {
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
rounded: 'lg',
|
rounded: 'lg',
|
||||||
maxHeight: '85vh',
|
|
||||||
},
|
},
|
||||||
VExpansionPanels: {
|
VExpansionPanels: {
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user