From bfd4aa0dffdbccbc283a6f7a1370d5921bd7060b Mon Sep 17 00:00:00 2001
From: zzzz <690498789@qq.com>
Date: Sun, 28 Apr 2024 14:26:56 +0800
Subject: [PATCH] first
---
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