From aa2f3a0857882a12051194d7894b0c3d15a89dc2 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Thu, 04 Sep 2025 18:47:38 +0800
Subject: [PATCH] 1

---
 src/views/cryptos/Announce/announceDetail.vue |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/views/cryptos/Announce/announceDetail.vue b/src/views/cryptos/Announce/announceDetail.vue
index e84a5b9..796870f 100644
--- a/src/views/cryptos/Announce/announceDetail.vue
+++ b/src/views/cryptos/Announce/announceDetail.vue
@@ -5,7 +5,8 @@
             <div class="content">
                 <div class="font-52 font-700 textColor">{{ title }}</div>
                 <p class="mt-20 text-grey font-30">{{ createTimeStr }}</p>
-                <div class="flex justify-center mt-30" v-if="imgUrl"><img :src="`${imgUrl}`" class="w-200 h-200" alt="">
+                <div class="flex justify-center mt-30" v-if="resdata.imgUrl">
+					<img :src="resdata.imgUrl" class="w-200 h-200" alt="">
                 </div>
                 <div class="mt-32 text-cont textColor font-28" v-html="content"></div>
             </div>
@@ -29,7 +30,8 @@
             title: '',
             createTimeStr: '',
             content: '',
-            imgUrl: ''
+            imgUrl: '',
+			resdata:{}
         }
     },
     mounted() {
@@ -42,6 +44,7 @@
                 language: this.$i18n.locale,
             }).then(res => {
                 const { title, startTime, content, imgUrl } = res
+				this.resdata = res
                 this.title = title;
                 this.createTimeStr = startTime.substring(0, 10)
                 this.content = content

--
Gitblit v1.9.3