From 47d2e74ddff53a4865cb98f893ec623a60d2b5fb Mon Sep 17 00:00:00 2001
From: PC-20250623MANY\Administrator <344137771@qq.com>
Date: Sat, 09 Aug 2025 17:57:28 +0800
Subject: [PATCH] 1

---
 src/page/user/compontents/recharge-list.vue |   24 ++++++++++++++----------
 1 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/src/page/user/compontents/recharge-list.vue b/src/page/user/compontents/recharge-list.vue
index 3836934..3a0038e 100644
--- a/src/page/user/compontents/recharge-list.vue
+++ b/src/page/user/compontents/recharge-list.vue
@@ -1,5 +1,5 @@
 <template>
-  <div style="padding-bottom: 100px">
+  <div style="padding-bottom: 100px;background-color: #fff;">
     <div v-if="list.length <= 0" class="empty text-center">
       {{ $t("hj168") }}
     </div>
@@ -21,7 +21,7 @@
                 <span
                   :style="{ color: $state.theme == 'red' ? '#BB1815' : '' }"
                 >
-                  {{ item.channelName }} {{ item.payAmt }}
+                  {{ item.channelName }} {{ item.payAmt | _toLocaleString }}
                 </span>
               </span>
               <span
@@ -36,19 +36,23 @@
                 <i
                   v-if="item.orderStatus == 1"
                   class="iconfont icon-tongguo4 animated bounceIn"
-                ></i>
+                >
+                </i>
                 <i
                   v-if="item.orderStatus == 0"
                   class="iconfont icon-dengdai animated bounceInDown"
-                ></i>
+                >
+                </i>
                 <i
                   v-if="item.orderStatus == 2"
                   class="iconfont icon-failure animated bounceInDown"
-                ></i>
+                >
+                </i>
                 <i
                   v-if="item.orderStatus == 3"
                   class="iconfont icon-iconfontweitongguo animated bounceInDown"
-                ></i>
+                >
+                </i>
                 <!-- 1 => 成功 2 失败 3取消 4 等待 -->
                 {{
                   item.orderStatus == 1
@@ -68,10 +72,10 @@
                 >
                 <span class="info-item"
                   >{{ $t("时间") }}:
-                  <b v-if="item.addTime">{{
-                    new Date(item.addTime) | timeFormat
-                  }}</b>
-                  <b v-else></b>
+                  <b v-if="item.addTime"
+                    >{{item.addTime}}
+                  </b>
+                  <b v-else> </b>
                 </span>
               </div>
             </div>

--
Gitblit v1.9.3