// 获取银行卡
            if (this.allBankInfo[i].type == 0) {
              this.allBank.push(this.allBankInfo[i]);
              this.allBank.forEach(item => {
                item.img = require("../assets/images/bankcard.svg")
              });
            }
            // 获取USDT
            if (this.allBankInfo[i].type == 1) {
              this.allUsdt.push(this.allBankInfo[i]);
              this.allUsdt.forEach(item => {
                if(item.pay_name){
                  if(item.pay_name.includes("TRC")){
                    item.img = require("../assets/images/TRC20.png")
                  }
                }
                if(item.bank_name){
                  if(item.bank_name.includes("ERC20")){
                    item.img = require("../assets/images/erc20.svg")
                  }
                }
              });

            }

By lxcss

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注