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

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

@@ -16,7 +16,7 @@ const userDataDir: Readonly<string> = `${await path.appLocalDataDir()}${path.sep
const dbDataPath: Readonly<string> = `${await path.appConfigDir()}${path.sep()}TeyvatGuide.db`;
/* 用于存放日志的路径 */
const logDataDir: Readonly<string> = await path.appLogDir();
/* 讯类型 TODO:改成枚举类 */
/* 讯类型 TODO:改成枚举类 */
export type NewsType = "notice" | "activity" | "news";
const useAppStore = defineStore(
@@ -46,7 +46,7 @@ const useAppStore = defineStore(
const server = ref<TGApp.Game.Base.ServerTypeEnum>(GameServerEnum.CN_QD01);
/* 语言 */
const lang = ref<TGApp.BBS.Announcement.AnnoLangEnum>(AnnoLangEnum.CHS);
/* 最近的讯类型 */
/* 最近的讯类型 */
const recentNewsType = ref<NewsType>("notice");
/* 是否开启分辨率回正 */
const needResize = ref<string>("true");