mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 07:28:37 +08:00
fix versions ui
This commit is contained in:
@@ -213,9 +213,8 @@ const dropdownItems = ref([
|
|||||||
<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" scrollable>
|
<VDialog v-if="releaseDialog" v-model="releaseDialog" width="600" scrollable>
|
||||||
<VCard>
|
<VCard :title="`${props.plugin?.plugin_name} 更新说明`">
|
||||||
<DialogCloseBtn @click="releaseDialog = false" />
|
<DialogCloseBtn @click="releaseDialog = false" />
|
||||||
<VCardTitle>{{ props.plugin?.plugin_name }} 更新说明</VCardTitle>
|
|
||||||
<VersionHistory :history="props.plugin?.history" />
|
<VersionHistory :history="props.plugin?.history" />
|
||||||
</VCard>
|
</VCard>
|
||||||
</VDialog>
|
</VDialog>
|
||||||
|
|||||||
@@ -467,9 +467,8 @@ watch(
|
|||||||
|
|
||||||
<!-- 更新日志 -->
|
<!-- 更新日志 -->
|
||||||
<VDialog v-if="releaseDialog" v-model="releaseDialog" width="600" scrollable>
|
<VDialog v-if="releaseDialog" v-model="releaseDialog" width="600" scrollable>
|
||||||
<VCard>
|
<VCard :title="`${props.plugin?.plugin_name} 更新说明`">
|
||||||
<DialogCloseBtn @click="releaseDialog = false" />
|
<DialogCloseBtn @click="releaseDialog = false" />
|
||||||
<VCardTitle>{{ props.plugin?.plugin_name }} 更新说明</VCardTitle>
|
|
||||||
<VersionHistory :history="props.plugin?.history" />
|
<VersionHistory :history="props.plugin?.history" />
|
||||||
<VCardText>
|
<VCardText>
|
||||||
<VBtn @click="updatePlugin" block>
|
<VBtn @click="updatePlugin" block>
|
||||||
|
|||||||
@@ -8,17 +8,16 @@ const props = defineProps({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VCardItem>
|
<VCardText>
|
||||||
<VList>
|
<VList>
|
||||||
<VListItem
|
<VListItem v-for="(value, key) in props.history" :key="key">
|
||||||
v-for="(value, key) in props.history"
|
<VListItemTitle class="font-bold text-lg">
|
||||||
:key="key"
|
{{ key }}
|
||||||
>
|
</VListItemTitle>
|
||||||
<VListItemTitle>{{ key }}</VListItemTitle>
|
|
||||||
<div class="text-gray-500">
|
<div class="text-gray-500">
|
||||||
{{ value }}
|
{{ value }}
|
||||||
</div>
|
</div>
|
||||||
</VListItem>
|
</VListItem>
|
||||||
</VList>
|
</VList>
|
||||||
</VCardItem>
|
</VCardText>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user