From 6b019592ce032937fd6d3631a912fa8cd37e9fe4 Mon Sep 17 00:00:00 2001
From: PC-20250623MANY\Administrator <344137771@qq.com>
Date: Thu, 07 Aug 2025 14:56:31 +0800
Subject: [PATCH] 1

---
 src/page/user/compontents/cash-list.vue |   28 +++++++++++++++-------------
 1 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/src/page/user/compontents/cash-list.vue b/src/page/user/compontents/cash-list.vue
index 0fc00a1..2693f7f 100644
--- a/src/page/user/compontents/cash-list.vue
+++ b/src/page/user/compontents/cash-list.vue
@@ -14,10 +14,10 @@
           <div class="order-info-box">
             <div class="order-title">
               <span class="main"> {{ $t("hjtxyhk") }} </span>
-              <span class="payNumber"
-                >{{ $USD }}{{ item.withAmt | _toLocaleString }}</span
-              >
-              <span v-if="item.withStatus!=1" class="red pull-right">
+              <span class="payNumber">{{
+                item.withAmt | _toLocaleString
+              }}</span>
+              <span v-if="item.withStatus != 1" class="red pull-right">
                 {{
                   item.withStatus == 1
                     ? $t("hjtxcg")
@@ -44,7 +44,7 @@
                   class="iconfont icon-iconfontweitongguo animated bounceInDown"
                 ></i>
               </span>
-              <span v-if="item.withStatus==1" class="green pull-right" >
+              <span v-if="item.withStatus == 1" class="green pull-right">
                 {{
                   item.withStatus == 1
                     ? $t("hjtxcg")
@@ -78,7 +78,7 @@
                 <span class="col-xs-6">
                   {{ $t("hj44") }}:
                   <b class="space">
-                    {{ $USD }} {{ item.withFee | _toLocaleString }}
+                    {{ item.withFee | _toLocaleString }}
                   </b>
                 </span>
                 <!-- <span class="col-xs-6">实际到账金额:<b class="space" style="font-size:0.26rem">{{item.withAmt - item.withFee}}</b>元</span>                         -->
@@ -112,7 +112,9 @@
               <p class="clearfix">
                 <span class="secondary col-xs-6"
                   >{{ $t("sj") }}:
-                  <b v-if="item.applyTime">{{ $moment(item.applyTime).format("DD-MM-YYYY hh:mm:ss A") }}</b>
+                  <b v-if="item.applyTime">{{
+                    $moment(item.applyTime).format("DD-MM-YYYY hh:mm:ss A")
+                  }}</b>
                   <b v-else></b>
                 </span>
               </p>
@@ -160,7 +162,7 @@
       loading: false,
       list: [],
       pageNum: 1,
-      pageSize: 15,
+      pageSize: 15
     };
   },
   watch: {},
@@ -174,11 +176,11 @@
       let opt = {
         withStatus: "", // 提现状态 0已提交,1转账成功,2转账失败
         pageNum: this.pageNum,
-        pageSize: 15,
+        pageSize: 15
       };
       let data = await api.withdrawList(opt);
       if (data.status === 0) {
-        data.data.list.forEach((element) => {
+        data.data.list.forEach(element => {
           this.list.push(element);
         });
       } else {
@@ -199,7 +201,7 @@
       // 取消提现
       // MessageBox.confirm('您确定要平仓吗?').then(async action => {
       let opt = {
-        withId: val,
+        withId: val
       };
       let data = await api.canceloutMoney(opt);
       if (data.status === 0) {
@@ -210,8 +212,8 @@
         Toast(data.msg);
       }
       // });
-    },
-  },
+    }
+  }
 };
 </script>
 <style lang="less" scoped>

--
Gitblit v1.9.3