fixed default picture not display in some times

This commit is contained in:
Jeffrey Hsu 2024-12-18 08:43:00 +08:00
parent a2736a6385
commit d0039feaf9
2 changed files with 28 additions and 8 deletions

View File

@ -5,13 +5,11 @@ const props = defineProps<{
post: IPost
}>()
const thumbUrl = computed(() => {
//
props.post.fields.thumb.value = props.post.fields.thumb.value ? props.post.fields.thumb.value : getAssetURL(
`common/${Math.floor(Math.random() * (7 - 1 + 1)) + 1}.jpg`
)
return props.post.fields.thumb.value
})
const pid = useAsyncData('pid', async () => (Math.floor(Math.random() * (7 - 1 + 1)) + 1).toString())
const thumbUrl = computed(() => props.post.fields.thumb.value)
const randomId = computed(() => pid.data.value!)
</script>
@ -21,8 +19,9 @@ const thumbUrl = computed(() => {
:to="{name: 'article-cid', params: {cid: post.cid}}">
<!-- 图片 -->
<div class="container h-full">
<img :src="thumbUrl" alt=""
<img v-if="thumbUrl" :src="thumbUrl" alt=""
class="h-full w-full object-cover object-center transition-all duration-300 hover:scale-110">
<card-article-default-image :id="randomId"/>
</div>
<!-- 文字部分 -->
<div class="container relative">

View File

@ -0,0 +1,21 @@
<script setup lang="ts">
defineProps<{
id: string
}>()
</script>
<template>
<img src="~/assets/images/common/1.jpg" alt="" v-if="id === '1'"/>
<img src="~/assets/images/common/2.jpg" alt="" v-else-if="id === '2'"/>
<img src="~/assets/images/common/3.jpg" alt="" v-else-if="id === '3'"/>
<img src="~/assets/images/common/4.jpg" alt="" v-else-if="id === '4'"/>
<img src="~/assets/images/common/5.jpg" alt="" v-else-if="id === '5'"/>
<img src="~/assets/images/common/6.jpg" alt="" v-else-if="id === '6'"/>
<img src="~/assets/images/common/7.jpg" alt="" v-else-if="id === '7'"/>
</template>
<style scoped>
img {
@apply h-full w-full object-cover object-center transition-all duration-300 hover:scale-110
}
</style>