From 3a4c266b791c86b6701567e4b52de82fb528f77e Mon Sep 17 00:00:00 2001
From: lxf <1371462558@qq.com>
Date: Fri, 06 Jun 2025 18:32:35 +0800
Subject: [PATCH] 银行卡功能修改
---
src/page/user/compontents/cash-list.vue | 29 ++++++++++++++++++++++++++++-
1 files changed, 28 insertions(+), 1 deletions(-)
diff --git a/src/page/user/compontents/cash-list.vue b/src/page/user/compontents/cash-list.vue
index ac73f4e..0fc00a1 100644
--- a/src/page/user/compontents/cash-list.vue
+++ b/src/page/user/compontents/cash-list.vue
@@ -17,7 +17,34 @@
<span class="payNumber"
>{{ $USD }}{{ item.withAmt | _toLocaleString }}</span
>
- <span class="red pull-right">
+ <span v-if="item.withStatus!=1" class="red pull-right">
+ {{
+ item.withStatus == 1
+ ? $t("hjtxcg")
+ : item.withStatus == 2
+ ? $t("hjtxsb")
+ : item.withStatus == 3
+ ? $t("hjddqx")
+ : $t("hjshz")
+ }}
+ <i
+ v-if="item.withStatus == 1"
+ class="iconfont icon-tongguo4 animated bounceIn"
+ ></i>
+ <i
+ v-if="item.withStatus == 0"
+ class="iconfont icon-dengdai animated bounceInDown"
+ ></i>
+ <i
+ v-if="item.withStatus == 2"
+ class="iconfont icon-failure animated bounceInDown"
+ ></i>
+ <i
+ v-if="item.withStatus == 3"
+ class="iconfont icon-iconfontweitongguo animated bounceInDown"
+ ></i>
+ </span>
+ <span v-if="item.withStatus==1" class="green pull-right" >
{{
item.withStatus == 1
? $t("hjtxcg")
--
Gitblit v1.9.3