From 54e7f6ee682784077cd077cf54bf8dc97c2f2bda Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Tue, 14 May 2024 18:28:10 +0800
Subject: [PATCH] hqchart改月份为英文

---
 src/page/user/recharge-sure.vue |   28 ++++++++++++++++++++--------
 1 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/src/page/user/recharge-sure.vue b/src/page/user/recharge-sure.vue
index fcb080c..97dcace 100644
--- a/src/page/user/recharge-sure.vue
+++ b/src/page/user/recharge-sure.vue
@@ -63,6 +63,9 @@
           </div>
         </div>
       </div>
+<!--      <van-cell-group>-->
+<!--        <van-cell :title="$t('最低取款金额')" value="内容" />-->
+<!--      </van-cell-group>-->
       <van-button
         class="but"
         type="primary"
@@ -75,12 +78,17 @@
 </template>
 
 <script>
-import { ActionSheet, Notify } from "vant";
+import { ActionSheet, Notify,Cell, CellGroup } from "vant";
 import ClipboardJS from "clipboard";
 import { getBankCard, getMoney, outMoney } from "../../axios/api";
 
 export default {
-  components: { ActionSheet, [Notify.Component.name]: Notify.Component },
+  components: {
+    ActionSheet,
+    [Notify.Component.name]: Notify.Component,
+    Cell,
+    CellGroup
+  },
   data() {
     return {
       value: 0,
@@ -103,13 +111,17 @@
           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: {},

--
Gitblit v1.9.3