From 25b2ba1cf86bc3439e7ad2acf2cd4a9ea7e4b0ed Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Fri, 28 Jun 2024 09:28:04 +0800
Subject: [PATCH] 123

---
 src/page/new-urrency/components/placing-list.vue |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/page/new-urrency/components/placing-list.vue b/src/page/new-urrency/components/placing-list.vue
index fcb0d83..de2ba19 100644
--- a/src/page/new-urrency/components/placing-list.vue
+++ b/src/page/new-urrency/components/placing-list.vue
@@ -17,12 +17,18 @@
       </van-row>
     </div>
     <div v-for="item in showList" :key="item.id" class="list-call">
-      <van-row type="flex" justify="space-between" align="center">
+      <van-row
+        type="flex"
+        justify="space-between"
+        align="center"
+        style="min-height: 30px; margin: 10px 0"
+      >
         <van-col span="4">
           <div class="state">{{ getstatus(item.status) }}</div>
         </van-col>
-        <van-col span="2"></van-col>
+        <van-col span="1"></van-col>
         <van-col span="4">{{ item.newCoinName }}</van-col>
+        <van-col span="1"></van-col>
         <van-col span="4">{{ item.lotteryQuantity }}</van-col>
         <van-col span="10" style="text-align: right">
           <div v-if="item.status === 2" class="gm">
@@ -65,18 +71,13 @@
     },
     getstatus(val) {
       switch (val) {
-        case 1:
-          return this.$t("已认购");
-        case 2:
-          return this.$t("已中签");
         case 3:
-          return this.$t("已认缴");
+          return this.$t("配售");
         case 4:
           return this.$t("配售");
-        case 0:
-          return this.$t("未中签");
+
         default:
-          break;
+          return this.$t("已认购");
       }
     },
     async getList() {
@@ -93,13 +94,12 @@
 .list-call {
   border-bottom: 1px solid #f0f0f0;
   margin: 0 20px;
-  line-height: 100px;
 }
 .state {
   color: #1553e6;
-  border: 1px solid #1553e6;
+  // border: 1px solid #1553e6;
   text-align: center;
-  height: 40px;
+  // height: 40px;
   line-height: 40px;
   font-size: 26px;
 }

--
Gitblit v1.9.3