mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 15:36:49 +08:00
fix ui
This commit is contained in:
@@ -93,7 +93,7 @@ onMounted(() => {
|
|||||||
single-line
|
single-line
|
||||||
placeholder="电影或电视剧名称"
|
placeholder="电影或电视剧名称"
|
||||||
variant="solo"
|
variant="solo"
|
||||||
append-inner-icon="mdi-magnify"
|
prepend-inner-icon="mdi-magnify"
|
||||||
flat
|
flat
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
@@ -101,7 +101,7 @@ onMounted(() => {
|
|||||||
@keydown.enter="searchMedias"
|
@keydown.enter="searchMedias"
|
||||||
/>
|
/>
|
||||||
</VToolbar>
|
</VToolbar>
|
||||||
|
<DialogCloseBtn @click="() => { emit('close') }" />
|
||||||
<VList
|
<VList
|
||||||
v-if="items.length > 0"
|
v-if="items.length > 0"
|
||||||
lines="three"
|
lines="three"
|
||||||
|
|||||||
@@ -350,12 +350,12 @@ onBeforeMount(() => {
|
|||||||
single-line
|
single-line
|
||||||
placeholder="插件名称或描述"
|
placeholder="插件名称或描述"
|
||||||
variant="solo"
|
variant="solo"
|
||||||
append-inner-icon="mdi-magnify"
|
prepend-inner-icon="mdi-magnify"
|
||||||
flat
|
flat
|
||||||
class="mx-1"
|
class="mx-1"
|
||||||
/>
|
/>
|
||||||
</VToolbar>
|
</VToolbar>
|
||||||
|
<DialogCloseBtn @click="closeSearchDialog" />
|
||||||
<VList
|
<VList
|
||||||
v-if="filterPlugins.length > 0"
|
v-if="filterPlugins.length > 0"
|
||||||
lines="two"
|
lines="two"
|
||||||
@@ -380,7 +380,13 @@ onBeforeMount(() => {
|
|||||||
</template>
|
</template>
|
||||||
<VListItemTitle>
|
<VListItemTitle>
|
||||||
{{ item.plugin_name }}<span class="text-sm ms-2 mt-1 text-gray-500">v{{ item?.plugin_version }}</span>
|
{{ item.plugin_name }}<span class="text-sm ms-2 mt-1 text-gray-500">v{{ item?.plugin_version }}</span>
|
||||||
<ExistIcon v-if="item.installed" />
|
<VIcon
|
||||||
|
v-if="item.installed"
|
||||||
|
color="success"
|
||||||
|
icon="mdi-check-circle"
|
||||||
|
class="ms-2"
|
||||||
|
size="small"
|
||||||
|
/>
|
||||||
</VListItemTitle>
|
</VListItemTitle>
|
||||||
<VListItemSubtitle class="mt-2" v-html="item.plugin_desc" />
|
<VListItemSubtitle class="mt-2" v-html="item.plugin_desc" />
|
||||||
</VListItem>
|
</VListItem>
|
||||||
|
|||||||
Reference in New Issue
Block a user