更新聊天次数购买弹窗

修复bug
This commit is contained in:
2025-10-14 11:00:49 +08:00
parent b4b1d347fc
commit 0088515f2a
21 changed files with 2473 additions and 2115 deletions
@@ -16,12 +16,16 @@ export class ChargePopPanel extends li_BaseView {
Utils.parseNode(this.node, this._nodeTab);
GButton.BandClick(this._nodeTab.chargeBtn, this.gotoCharge, this);
GButton.BandClick(this._nodeTab.closeBtn, this.close, this);
GButton.BandClick(this._nodeTab.closeBtn, this.Close, this);
}
gotoCharge() {
NavigationManager.Instance.openPopupPanel("PurchasePanel");
this.close();
this.Close();
}
Close() {
NavigationManager.Instance.closePopupPanel(this.node);
}
}