协议调试
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user