dcc
2024-05-07 2b8f54d7601872a95a9b774f290e18bde395acfe
src/page/user/recharge-sure.vue
@@ -103,14 +103,19 @@
          key: "US",
        },
        {
          name: this.$t("MAS"),
          key: "MAS",
          name: this.$t("IN"),
          key: "IN",
        },
        {
          name: this.$t("HK"),
          key: "HK",
        },
        // {
        //   name: this.$t("MAS"),
        //   key: "MAS",
        // },
        // {
        //   name: this.$t("HK"),
        //   key: "HK",
        // },
      ],
      bankCard: {},
      availableBalanceUSD: "0.0000",
      getMoneyList: [],
@@ -153,7 +158,7 @@
        this.getMoneyList = res.data;
        res.data.map((item) => {
          if (item.accectType === this.rechargeAccountData.key) {
            this.availableBalanceUSD = item.availableBalanceUSD;
            this.availableBalanceUSD = item.availableBalance;
            this.symbolCode = item.symbolCode;
            this.accectType = item.accectType;
          }
@@ -187,7 +192,7 @@
      this.rechargeAccountData = e;
      (this.getMoneyList || []).map((item) => {
        if (item.accectType === this.rechargeAccountData.key) {
          this.availableBalanceUSD = item.availableBalanceUSD;
          this.availableBalanceUSD = item.availableBalance;
          this.symbolCode = item.symbolCode;
          this.accectType = item.accectType;
        }