From fff675a093a912ecdda8e5498421a3e41ab0b596 Mon Sep 17 00:00:00 2001
From: admin <344137771@qq.com>
Date: Sun, 11 Jan 2026 19:35:02 +0800
Subject: [PATCH] 1
---
src/page/user/transferNew.vue | 26 +++++++++++++-------------
1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/src/page/user/transferNew.vue b/src/page/user/transferNew.vue
index f55d762..f9c9b2a 100644
--- a/src/page/user/transferNew.vue
+++ b/src/page/user/transferNew.vue
@@ -108,10 +108,10 @@
showPopover: false,
showPopover1: false,
actions: [
+ { text: this.$t("日本"), value: "JP", currency: "JPY" },
{ text: this.$t("美国"), value: "US", currency: "USD" },
- { text: this.$t("hk1"), value: "HK", currency: "HKD" },
- { text: this.$t("tw"), value: "TW", currency: "TWD" },
- { text: this.$t("id1"), value: "IN", currency: "INR" }
+ // { text: this.$t("hk1"), value: "HK", currency: "HKD" },
+ // { text: this.$t("tw"), value: "TW", currency: "TWD" },
],
cValue: {},
dValue: {},
@@ -159,15 +159,15 @@
case "USD":
this.moneyRevise = this.usM.availableBalance;
break;
- case "HKD":
- this.moneyRevise = this.hkM.availableBalance;
- break;
- case "TWD":
- this.moneyRevise = this.twM.availableBalance;
- break;
- case "INR":
+ case "JPY":
this.moneyRevise = this.inM.availableBalance;
break;
+ // case "HKD":
+ // this.moneyRevise = this.hkM.availableBalance;
+ // break;
+ // case "TWD":
+ // this.moneyRevise = this.twM.availableBalance;
+ // break;
default:
break;
}
@@ -185,9 +185,9 @@
if (data.status === 0) {
data.data.forEach(item => {
if (item.accectType == "US") this.usM = item;
- else if (item.accectType == "TW") this.twM = item;
- else if (item.accectType == "IN") this.inM = item;
- else if (item.accectType == "HK") this.hkM = item;
+ else if (item.accectType == "JP") this.inM = item;
+ // else if (item.accectType == "TW") this.twM = item;
+ // else if (item.accectType == "HK") this.hkM = item;
});
}
},
--
Gitblit v1.9.3