根据定义「咨讯」应为「资讯」。

News 是「资讯」
而「咨讯」在网络上检索到的定义为 Valuable Information,且现代汉语词典(第 7 版)中未收录该词
This commit is contained in:
LuoYunXi
2025-12-21 11:26:25 +08:00
committed by GitHub
parent 5b896e9e56
commit 696ca40f7f
8 changed files with 15 additions and 15 deletions

View File

@@ -43,7 +43,7 @@
variant="elevated"
@click="switchNews"
>
切换米游社
切换米游社
</v-btn>
<v-btn
v-if="isLogin"
@@ -227,7 +227,7 @@ function getAnnoCard(
}
async function switchNews(): Promise<void> {
await TGLogger.Info("[Announcements][switchNews] 切换米游社讯");
await TGLogger.Info("[Announcements][switchNews] 切换米游社讯");
await router.push("/news/2");
}
</script>

View File

@@ -109,7 +109,7 @@ const postData = reactive<PostData>({
const rawData = reactive<RawData>({
notice: shallowRef<RawItem>({ isLast: false, name: "公告", lastId: 0 }),
activity: shallowRef<RawItem>({ isLast: false, name: "活动", lastId: 0 }),
news: shallowRef<RawItem>({ isLast: false, name: "讯", lastId: 0 }),
news: shallowRef<RawItem>({ isLast: false, name: "讯", lastId: 0 }),
});
const tab = computed<NewsType>({
get: () => ((recentNewsType.value satisfies NewsType) ? recentNewsType.value : "notice"),