This commit is contained in:
2025-10-13 15:39:35 +08:00
parent f0069c2745
commit 4953b86bb3
27 changed files with 4771 additions and 2063 deletions
@@ -521,11 +521,18 @@ export class ThemePanel extends li_BaseView {
const walletData = DataManager.I.getDataById<WalletData>(DataId.Wallet);
if (!walletData.isVip) {
this.vipLeftTime.string = LanguageUtils.getText("purchasepanel.notvip");
//this.vipLeftTime.string = LanguageUtils.getText("purchasepanel.notvip");
this._nodeTab.notvipicon.active = true;
this._nodeTab.notVip.active = true;
this.vipLeftTime.node.active = false;
} else {
const vipExpire = walletData.vipExpire;
const leftTime = Utils.formatVipLeftTime(vipExpire);
this.vipLeftTime.node.active = true;
this._nodeTab.notvipicon.active = false;
this._nodeTab.notVip.active = false;
if (leftTime == null) {
LanguageUtils.getText("purchasepanel.notvip");