From b7c1a31cf214d8087e3663f5270a1ad90bc9fb88 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Tue, 03 Dec 2024 13:25:13 +0800
Subject: [PATCH] 1
---
src/page/list/favoriteslist/data.list.vue | 25 ++++++++++++++++++++++++-
src/page/user/compontents/cash-list.vue | 29 ++++++++++++++++++++++++++++-
2 files changed, 52 insertions(+), 2 deletions(-)
diff --git a/src/page/list/favoriteslist/data.list.vue b/src/page/list/favoriteslist/data.list.vue
index eb44168..3f814b9 100644
--- a/src/page/list/favoriteslist/data.list.vue
+++ b/src/page/list/favoriteslist/data.list.vue
@@ -76,7 +76,30 @@
</div>
</div>
</div>
- <div class="right_btn pink" style="padding: 0px 0.2rem">
+ <div v-if="item.status == 5" class="right_btn green" style="padding: 0px 0.2rem;color: #fff;">
+ <span>
+ {{
+ item.status == 1
+ ? $t("hj131")
+ : item.status == 2
+ ? $t("hj132")
+ : item.status == 3
+ ? $t("hj133")
+ : item.status == 4
+ ? $t("待上市")
+ : item.status == 5
+ ? $t("待上市")
+ : item.status == 6
+ ? $t("已上市")
+ : ""
+ }}
+ </span>
+
+ <!-- <van-button v-else type="primary">
+ {{ $t("hj250") }}</van-button
+ > -->
+ </div>
+ <div v-if="item.status != 5" class="right_btn pink" style="padding: 0px 0.2rem;">
<span>
{{
item.status == 1
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