diff --git a/src/pages/Guest.vue b/src/pages/Guest.vue index 94501fc..7871f2d 100644 --- a/src/pages/Guest.vue +++ b/src/pages/Guest.vue @@ -222,14 +222,14 @@ const features = ref([ const partners = ref([ { name: "HiMCBBS 我的世界中文论坛", - logo: "https://www.himcbbs.com/data/assets/logo/wxmc_logo_text_blue.svg", + logo: "https://www.himcbbs.com/data/assets/favicon/himcbbs-favicon-black-6x.png", link: "https://www.himcbbs.com/", description: "中国我的世界玩家社区,提供游戏资讯、模组下载和创意分享。", }, // 可以在这里添加更多合作伙伴 ]); -const toggleFeatureDescription = (feature) => { +const toggleFeatureDescription = (feature: any) => { feature.showLong = !feature.showLong; };