From 44db498cedee7573d090797b1fe5c331c413b00a Mon Sep 17 00:00:00 2001
From: zzzz <690498789@qq.com>
Date: Mon, 22 Apr 2024 19:03:57 +0800
Subject: [PATCH] first

---
 src/page/user/recharge-sure.vue |   50 +++++++++++++++++++++++++++-----------------------
 1 files changed, 27 insertions(+), 23 deletions(-)

diff --git a/src/page/user/recharge-sure.vue b/src/page/user/recharge-sure.vue
index 1f2f100..95989a9 100644
--- a/src/page/user/recharge-sure.vue
+++ b/src/page/user/recharge-sure.vue
@@ -6,7 +6,15 @@
       :title="$t('提款')"
       left-arrow
       @click-left="onClickLeft"
-    />
+    >
+      <template #right>
+        <van-icon
+          @click="$router.push('/cashlist')"
+          name="orders-o"
+          size="20"
+        />
+      </template>
+    </van-nav-bar>
     <main>
       <div class="main-title">{{ $t("請選擇提款账户") }}</div>
       <van-cell
@@ -48,20 +56,12 @@
       </div>
       <div>
         <div class="dz-title" v-if="rechargeAccountData.key !== undefined">
-          <div>餘額</div>
+          <div>{{ $t("可用餘額") }}</div>
           <div class="balance-text">
             {{ availableBalanceUSD }} {{ symbolCode }}
+            <!-- {{ symbolCode }} -->
           </div>
         </div>
-
-        <!-- <div class="dz-title">
-          <div>實際到帳</div>
-          <div class="balance-text">0.0000</div>
-        </div> -->
-        <!-- <div class="dz-title" v-if="rechargeAccountData.key !== undefined">
-          <div>最小提款金額</div>
-          <div class="balance-text">0.0000</div>
-        </div> -->
       </div>
       <van-button
         class="but"
@@ -85,7 +85,7 @@
     return {
       value: 0,
 
-      paymentSelectData: "US",
+      paymentSelectData: "IN",
 
       show: false,
 
@@ -99,14 +99,19 @@
       rechargeAccountData: {},
       rechargeAccountActions: [
         {
-          name: this.$t("US"),
-          key: "US",
+          name: this.$t("IN"),
+          key: "IN",
         },
-        {
-          name: this.$t("MAS"),
-          key: "MAS",
-        },
+        // {
+        //   name: this.$t("MAS"),
+        //   key: "MAS",
+        // },
+        // {
+        //   name: this.$t("HK"),
+        //   key: "HK",
+        // },
       ],
+
       bankCard: {},
       availableBalanceUSD: "0.0000",
       getMoneyList: [],
@@ -125,9 +130,9 @@
         assetsType: this.accectType,
       });
       if (res.status === 0) {
-        Notify({ type: "success", message: this.$t("提款成功,等待审核") });
+        Notify({ type: "success", message: this.$t("hj182") });
         setTimeout(() => {
-          this.onClickLeft();
+          this.$router.push("/cashlist");
         }, 500);
       } else {
         Notify(res.msg);
@@ -149,7 +154,6 @@
         this.getMoneyList = res.data;
         res.data.map((item) => {
           if (item.accectType === this.rechargeAccountData.key) {
-            console.log(item.accectType, "assetsType1");
             this.availableBalanceUSD = item.availableBalance;
             this.symbolCode = item.symbolCode;
             this.accectType = item.accectType;
@@ -184,7 +188,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;
         }
@@ -338,4 +342,4 @@
     color: #4f5257;
   }
 }
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.9.3