This commit is contained in:
2025-09-19 11:10:20 +08:00
parent ad0e80ecda
commit a5859af3b4
14 changed files with 3596 additions and 881 deletions
@@ -10,6 +10,7 @@ import { PurchasePanel } from "./PurchasePanel";
import { QRCodeGenerator } from "db://assets/utils/qrcodeGenerator";
import { TipsPanel } from "./TipsPanel";
import { SDKManager } from "../../../Main/Channel/SDKManager";
import LanguageUtils from "../../../Main/Common/LanguageUtils";
const { ccclass, property } = _decorator;
@@ -108,8 +109,11 @@ export class Web3PopPanel extends li_BaseView {
const walletUrl = OrderData.getWalletById(this.orderId);
const expireTime = OrderData.getExpireById(this.orderId);
const retCode = OrderData.getRetCodeById(this.orderId);
// const retCode = OrderData.getRetCodeById(this.orderId);
// if (retCode != 0) {
// TipsPanel.show(LanguageUtils.getText("error_code_"+retCode));
// return;
// }
this.expireTimeText.string = expireTime.toString();
this.amount.string = amount;
this.address.string = walletUrl;