diff --git a/20251115/sponsorList/mobile/index.html b/20251115/sponsorList/mobile/index.html index 45a8c57..8acb30c 100644 --- a/20251115/sponsorList/mobile/index.html +++ b/20251115/sponsorList/mobile/index.html @@ -79,6 +79,19 @@ rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" /> + +
@@ -168,6 +181,8 @@
+ + @@ -188,13 +203,11 @@ v-for="s in filteredSponsors" :key="s._uid" :sponsor="s" - > - - + /> + + @@ -211,6 +224,18 @@ + + - + diff --git a/20251115/sponsorList/mobile/script.js b/20251115/sponsorList/mobile/script.js index 144ac90..0fa888f 100644 --- a/20251115/sponsorList/mobile/script.js +++ b/20251115/sponsorList/mobile/script.js @@ -7,6 +7,10 @@ const SponsorCard = { template: "#sponsor-card-template", }; +const DesignedRemark = { + template: "#designed-remark-template", +}; + const app = createApp({ setup() { const eventTitle = ref(""); @@ -291,5 +295,6 @@ const app = createApp({ }, }); +app.component("designed-remark", DesignedRemark); // 全局注册 app.component("sponsor-card", SponsorCard); // 全局注册 app.mount("#app");