This commit is contained in:
2025-08-01 18:28:36 +08:00
parent f91430728f
commit 0f8902405d
97 changed files with 6650 additions and 3608 deletions
+6 -2
View File
@@ -29,8 +29,12 @@ export class DemoManager {
}
EnterGirlList(id: number) {
ViewManager.I.openBundlesView("GirlListPanel",id);
themeId = -1;
EnterGirlList(id: number = null) {
if(id != null) {this.themeId = id;}
if(this.themeId == -1) {return;}
console.log("EnterGirlList id:"+id);
ViewManager.I.openBundlesView("GirlListPanel",this.themeId);
}
EnterChat(id: number) {
ViewManager.I.openBundlesView("ChatPanel",id);