From b8f6f514b675fa6a006dfafbc99303b3c5c8ba85 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Fri, 17 May 2024 10:52:12 +0800
Subject: [PATCH] 一鍵平倉增加英文多语言,IFSC改成Select recharge account
---
src/page/list/tradingList/tabs.vue | 23 +++++++++++++----------
1 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/src/page/list/tradingList/tabs.vue b/src/page/list/tradingList/tabs.vue
index cc1e9ff..03c6638 100644
--- a/src/page/list/tradingList/tabs.vue
+++ b/src/page/list/tradingList/tabs.vue
@@ -45,31 +45,34 @@
export default {
components: { dataList },
mounted() {
- console.log(this.$route.query.type);
- this.active = this.$route.query.type || "2";
+ this.active = this.$route.query.type || "MAS";
},
data() {
return {
tabsList: [
{ title: this.$t("hj61"), key: "" },
+ // { title: this.$t("hj61"), key: "" },
// { title: this.$t("数字货币"), key: "1", name: "SZHB" },
- { title: this.$t("马股"), key: "2", name: "MAS" },
- { title: this.$t("美股"), key: "3", name: "US" },
- { title: this.$t("港股"), key: "4", name: "HK" },
+ // { title: this.$t("马股"), key: "MAS", name: "MAS" },
+ { title: this.$t("美股"), key: "US", name: "US" },
+ { title: this.$t("yg"), key: "IN", name: "IN" },
+ // { title: this.$t("港股"), key: "HK", name: "HK" },
],
zxtabsList: [
// { title: this.$t("数字货币"), key: "1", name: "SZHB" },
- { title: this.$t("马股"), key: "2", name: "MAS" },
- { title: this.$t("美股"), key: "3", name: "US" },
- { title: this.$t("港股"), key: "4", name: "HK" },
+ // { title: this.$t("马股"), key: "MAS", name: "MAS" },
+ { title: this.$t("美股"), key: "US", name: "US" },
+ { title: this.$t("yg"), key: "IN", name: "IN" },
+ // { title: this.$t("港股"), key: "HK", name: "HK" },
],
- active: "2",
- zxactive: "2",
+ active: "MAS",
+ zxactive: "MAS",
sousuo: "",
};
},
methods: {
change(e, type) {
+ console.log(e, type)
this[type] = e;
},
},
--
Gitblit v1.9.3