mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-09-09 20:57:17 +08:00
fix: 修复浏览器控制台报错
This commit is contained in:
@@ -41,7 +41,7 @@ const emit = defineEmits<{
|
||||
}>()
|
||||
|
||||
interface Props {
|
||||
avatar: string
|
||||
avatar?: string
|
||||
name: string
|
||||
isLink?: boolean
|
||||
}
|
||||
|
@@ -12,7 +12,7 @@
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>
|
||||
<img :src="`${image.src}?${new Date().getTime()}`" style="width: 100%" alt="" />
|
||||
<img :src="image.src" style="width: 100%" alt="" />
|
||||
</a-link>
|
||||
</div>
|
||||
</a-carousel-item>
|
||||
@@ -22,11 +22,11 @@
|
||||
<script lang="ts" setup>
|
||||
const images = [
|
||||
{
|
||||
src: 'https://continew.top/qrcode-text.png',
|
||||
src: `https://continew.top/qrcode-text.png?${new Date().getTime()}`,
|
||||
url: 'https://continew.top/about/intro.html'
|
||||
},
|
||||
{
|
||||
src: 'https://continew.top/sponsor.png',
|
||||
src: `https://continew.top/sponsor.png?${new Date().getTime()}`,
|
||||
url: 'https://continew.top/sponsor.html'
|
||||
}
|
||||
]
|
||||
|
@@ -23,7 +23,7 @@
|
||||
</a-typography-paragraph>
|
||||
</a-typography>
|
||||
<a-divider />
|
||||
<AiEditor :model-value="dataDetail?.content" />
|
||||
<AiEditor v-if="dataDetail?.content" :model-value="dataDetail?.content" />
|
||||
<a-divider />
|
||||
<div v-if="dataDetail?.updateTime" class="update-time-row">
|
||||
<span>
|
||||
|
Reference in New Issue
Block a user