From 2007ac8b95033bccbc7bc1e048e896757611e8f7 Mon Sep 17 00:00:00 2001
From: zzzz <690498789@qq.com>
Date: Wed, 24 Apr 2024 13:27:53 +0800
Subject: [PATCH] 1

---
 src/page/user/compontents/recharge-list.vue |   22 +++++++++++++---------
 1 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/src/page/user/compontents/recharge-list.vue b/src/page/user/compontents/recharge-list.vue
index 3836934..4c5b33c 100644
--- a/src/page/user/compontents/recharge-list.vue
+++ b/src/page/user/compontents/recharge-list.vue
@@ -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"
+                    >{{ new Date(item.addTime) | timeFormat }}
+                  </b>
+                  <b v-else> </b>
                 </span>
               </div>
             </div>

--
Gitblit v1.9.3