mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 15:36:49 +08:00
fix dialogs
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "moviepilot",
|
"name": "moviepilot",
|
||||||
"version": "1.3.3-1",
|
"version": "1.3.3-2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"bin": "dist/service.js",
|
"bin": "dist/service.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -234,10 +234,10 @@ const dropdownItems = ref([
|
|||||||
</VCardText>
|
</VCardText>
|
||||||
</VCard>
|
</VCard>
|
||||||
<!-- 插件配置页面 -->
|
<!-- 插件配置页面 -->
|
||||||
<VBottomSheet
|
<VDialog
|
||||||
v-model="pluginConfigDialog"
|
v-model="pluginConfigDialog"
|
||||||
scrollable
|
scrollable
|
||||||
inset
|
max-width="60rem"
|
||||||
>
|
>
|
||||||
<VCard
|
<VCard
|
||||||
:title="`${props.plugin?.plugin_name} - 配置`"
|
:title="`${props.plugin?.plugin_name} - 配置`"
|
||||||
@@ -265,13 +265,13 @@ const dropdownItems = ref([
|
|||||||
</VBtn>
|
</VBtn>
|
||||||
</VCardActions>
|
</VCardActions>
|
||||||
</VCard>
|
</VCard>
|
||||||
</VBottomSheet>
|
</VDialog>
|
||||||
|
|
||||||
<!-- 插件详情页面 -->
|
<!-- 插件详情页面 -->
|
||||||
<VBottomSheet
|
<VDialog
|
||||||
v-model="pluginInfoDialog"
|
v-model="pluginInfoDialog"
|
||||||
scrollable
|
scrollable
|
||||||
inset
|
max-width="80rem"
|
||||||
>
|
>
|
||||||
<VCard
|
<VCard
|
||||||
:title="`${props.plugin?.plugin_name}`"
|
:title="`${props.plugin?.plugin_name}`"
|
||||||
@@ -300,7 +300,7 @@ const dropdownItems = ref([
|
|||||||
</VBtn>
|
</VBtn>
|
||||||
</VCardActions>
|
</VCardActions>
|
||||||
</VCard>
|
</VCard>
|
||||||
</VBottomSheet>
|
</VDialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|||||||
@@ -143,9 +143,9 @@ async function transfer() {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VBottomSheet
|
<VDialog
|
||||||
scrollable
|
scrollable
|
||||||
inset
|
max-width="60rem"
|
||||||
>
|
>
|
||||||
<VCard
|
<VCard
|
||||||
:title="`${props.path ? `整理 - ${props.path}` : `整理 - 共 ${props.logids?.length} 条记录`}`"
|
:title="`${props.path ? `整理 - ${props.path}` : `整理 - 共 ${props.logids?.length} 条记录`}`"
|
||||||
@@ -305,5 +305,5 @@ async function transfer() {
|
|||||||
@close="tmdbSelectorDialog = false"
|
@close="tmdbSelectorDialog = false"
|
||||||
/>
|
/>
|
||||||
</VDialog>
|
</VDialog>
|
||||||
</VBottomSheet>
|
</VDialog>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -119,9 +119,9 @@ async function updateSiteInfo() {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VBottomSheet
|
<VDialog
|
||||||
inset
|
|
||||||
scrollable
|
scrollable
|
||||||
|
max-width="60rem"
|
||||||
>
|
>
|
||||||
<VCard
|
<VCard
|
||||||
:title="`${props.oper === 'add' ? '新增' : '编辑'}站点${props.oper !== 'add' ? ` - ${siteForm.name}` : ''}`"
|
:title="`${props.oper === 'add' ? '新增' : '编辑'}站点${props.oper !== 'add' ? ` - ${siteForm.name}` : ''}`"
|
||||||
@@ -270,5 +270,5 @@ async function updateSiteInfo() {
|
|||||||
</VBtn>
|
</VBtn>
|
||||||
</VCardActions>
|
</VCardActions>
|
||||||
</VCard>
|
</VCard>
|
||||||
</VBottomSheet>
|
</VDialog>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -219,9 +219,9 @@ onMounted(async () => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VBottomSheet
|
<VDialog
|
||||||
inset
|
|
||||||
scrollable
|
scrollable
|
||||||
|
max-width="60rem"
|
||||||
>
|
>
|
||||||
<VCard
|
<VCard
|
||||||
:title="`编辑订阅 - ${subscribeForm.name} ${subscribeForm.season ? `第 ${subscribeForm.season} 季` : ''}`"
|
:title="`编辑订阅 - ${subscribeForm.name} ${subscribeForm.season ? `第 ${subscribeForm.season} 季` : ''}`"
|
||||||
@@ -351,5 +351,5 @@ onMounted(async () => {
|
|||||||
</VBtn>
|
</VBtn>
|
||||||
</VCardActions>
|
</VCardActions>
|
||||||
</VCard>
|
</VCard>
|
||||||
</VBottomSheet>
|
</VDialog>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user