协议调试

This commit is contained in:
chen wei bo
2025-09-09 10:31:00 +08:00
parent 8fbbca0e41
commit 52dfc3cdd3
10 changed files with 28 additions and 72 deletions
+5 -5
View File
@@ -33,12 +33,12 @@ export class ThemeData extends BaseData {
this._themeIds = [];
for (const t of list) {
const vo: proto.cs.IThemes = {
id: t.id || 0, // 主题 id
key: t.key || "", // 多语言键
name: t.name || "", // 主题名称
category: t.category || 0, // 主题枚举
id: t.id, // 主题 id
key: t.key, // 多语言键
name: t.name, // 主题名称
category: t.category, // 主题枚举
isRelease: t.isRelease, // 是否解锁
path: t.path || "", // 图片路径
path: t.path, // 图片路径
};
this._themes.set(vo.id, vo);
this._themeIds.push(vo.id);