This commit is contained in:
2025-09-09 16:09:10 +08:00
parent 5e3e639638
commit f9f2077665
12 changed files with 123 additions and 26 deletions
+10 -1
View File
@@ -141,13 +141,22 @@ export class GirlListItem extends Component {
}
}
refreshBuy(success: boolean) {
if (success) {
this.refreshData(this.category, this.id, this.baseNode);
}
}
onClickDetail() {
if (false) {
NavigationManager.Instance.navigateToGirlDetail(this.id);
ViewManager.I.closeView(this.baseNode);
} else {
//未解锁
ViewManager.I.openBundlesView("PopupGirlListPanel", this.id);
ViewManager.I.openBundlesView("GirlListPopupPanel", {
base: this,
id: this.id,
});
}
}
}