This commit is contained in:
jxxghp
2024-03-26 15:59:37 +08:00
parent 952ef368ab
commit eee0c0c878
3 changed files with 10 additions and 3 deletions

View File

@@ -197,8 +197,8 @@ const dropdownItems = ref([
</a>
</span>
<span v-if="props.count" class="ms-3">
<VIcon icon="mdi-download" class="me-1" />
{{ props.count?.toLocaleString() }}
<VIcon icon="mdi-download" />
<span class="text-sm ms-1 mt-1">{{ props.count?.toLocaleString() }}</span>
</span>
</VCardText>
</VCard>

View File

@@ -1,6 +1,7 @@
<script lang="ts" setup>
import { useToast } from 'vue-toast-notification'
import { useConfirm } from 'vuetify-use-dialog'
import { VIcon } from 'vuetify/lib/components/index.mjs'
import api from '@/api'
import type { Plugin } from '@/api/types'
import FormRender from '@/components/render/FormRender.vue'
@@ -13,6 +14,7 @@ import store from '@/store'
// 输入参数
const props = defineProps({
plugin: Object as PropType<Plugin>,
count: Number,
width: String,
height: String,
})
@@ -424,6 +426,10 @@ watch(() => props.plugin?.has_update, (newHasUpdate, oldHasUpdate) => {
/>
</VAvatar>
</div>
<span v-if="props.count" class="absolute bottom-1 right-2 flex items-center">
<VIcon icon="mdi-fire" />
<span class="text-sm ms-1">{{ props.count }}</span>
</span>
<VCardItem class="py-2">
<VCardTitle class="flex items-center flex-row">
<VBadge v-if="props.plugin?.state" dot inline color="success" class="me-1 mb-1" />

View File

@@ -128,6 +128,7 @@ onBeforeMount(() => {
<PluginCard
v-for="data in dataList"
:key="`${data.id}_v${data.plugin_version}`"
:count="PluginStatistics[data.id || '0']"
:plugin="data"
@remove="refreshData"
@save="refreshData"
@@ -192,7 +193,7 @@ onBeforeMount(() => {
color="primary"
/>
</div>
<div v-if="isAppMarketLoaded" class="grid gap-4 grid-plugin-card items-start">
<div v-if="isAppMarketLoaded" class="grid gap-4 grid-plugin-card">
<div
v-for="(data, index) in getUnupdatedPlugins"
:key="index"