fix plugin ui

This commit is contained in:
jxxghp
2023-09-09 11:38:17 +08:00
parent 25669d18fc
commit 444aaa5cdc
2 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "moviepilot", "name": "moviepilot",
"version": "1.1.7", "version": "1.1.7-1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "vite --host", "dev": "vite --host",

View File

@@ -148,7 +148,7 @@ const dropdownItems = ref([
}, },
}, },
{ {
title: '插件配置', title: '配置',
value: 2, value: 2,
show: true, show: true,
props: { props: {
@@ -157,7 +157,7 @@ const dropdownItems = ref([
}, },
}, },
{ {
title: '卸载插件', title: '插件',
value: 3, value: 3,
show: true, show: true,
props: { props: {
@@ -240,7 +240,7 @@ const dropdownItems = ref([
scrollable scrollable
persistent persistent
> >
<VCard :title="props.plugin?.plugin_name"> <VCard :title="`${props.plugin?.plugin_name} - 配置`">
<DialogCloseBtn @click="pluginConfigDialog = false" /> <DialogCloseBtn @click="pluginConfigDialog = false" />
<VCardText> <VCardText>
<FormRender <FormRender
@@ -252,7 +252,7 @@ const dropdownItems = ref([
</VCardText> </VCardText>
<VCardActions> <VCardActions>
<VBtn v-if="pluginPageItems.length > 0" @click="showPluginInfo"> <VBtn v-if="pluginPageItems.length > 0" @click="showPluginInfo">
详情 查看详情
</VBtn> </VBtn>
<VSpacer /> <VSpacer />
<VBtn @click="savePluginConf"> <VBtn @click="savePluginConf">
@@ -269,7 +269,7 @@ const dropdownItems = ref([
scrollable scrollable
persistent persistent
> >
<VCard :title="`${props.plugin?.plugin_name} - 详情`"> <VCard :title="`${props.plugin?.plugin_name}`">
<DialogCloseBtn @click="pluginInfoDialog = false" /> <DialogCloseBtn @click="pluginInfoDialog = false" />
<VCardText> <VCardText>
<PageRender <PageRender