feat(members): add member ID to members list

This commit introduces a 'Member ID' column to the members table, making it the first column for easy reference.

- The member data schema and sample CSV have been updated to include the `memberId`.
- The members page now displays the `memberId` for each member.
- Additionally, a version query string has been added to the hero image URL to force a cache refresh.
This commit is contained in:
xiaomai
2025-11-02 22:37:17 +08:00
parent 3da20d0097
commit 2ac1428c34
5 changed files with 14 additions and 8 deletions

View File

@@ -50,7 +50,7 @@ export default defineNuxtConfig({
{ property: "og:url", content: "https://yphsalumni.org" }, // ✅ 换成你网站的真实域名
{
property: "og:image",
content: "https://yphsalumni.org/hero-image-2.jpg",
content: "https://yphsalumni.org/hero-image-2.jpg?v=2",
}, // ✅ 上传一张封面图
// Twitter Card
@@ -62,7 +62,7 @@ export default defineNuxtConfig({
},
{
name: "twitter:image",
content: "https://yphsalumni.org/hero-image-2.jpg",
content: "https://yphsalumni.org/hero-image-2.jpg?v=2",
},
],
},