From ccefbcee02f6fe252cc3ee9a5799f7ef18f7ebc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E8=8E=AB=E5=94=90=E5=B0=BC?= <1431128779@qq.com> Date: Tue, 25 Jun 2024 10:52:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=9B=BE=E7=89=87=E9=85=8D=E7=BD=AE=E8=B7=AF?= =?UTF-8?q?=E5=BE=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/tabbar/about/about.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/tabbar/about/about.vue b/pages/tabbar/about/about.vue index dc3653f..6c6b33b 100644 --- a/pages/tabbar/about/about.vue +++ b/pages/tabbar/about/about.vue @@ -142,7 +142,7 @@ export default { const _imgUrlOr = this.calcDefaultImageConfig.aboutProfileImageUrl; if (this.$utils.checkIsUrl(_imgUrlOr)) { return { - backgroundImage: `url(${_imgUrlOr})` + backgroundImage: `url(${this.$utils.checkImageUrl(_imgUrlOr)})` }; } else { return { @@ -151,7 +151,7 @@ export default { } }, calcWaveUrl() { - return this.calcDefaultImageConfig.waveImageUrl; + return this.$utils.checkImageUrl(this.calcDefaultImageConfig.waveImageUrl); }, copyrightConfig() { return this.haloConfigs.basicConfig.copyrightConfig;