From 454f7cdb840c7b08532002558de4233d71b951e9 Mon Sep 17 00:00:00 2001
From: PC-20250623MANY\Administrator <344137771@qq.com>
Date: Sat, 16 Aug 2025 14:27:19 +0800
Subject: [PATCH] 1

---
 src/page/markets/ipo.vue  |   20 ++++++++++++++++++--
 src/page/user/account.vue |    4 ++--
 2 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/src/page/markets/ipo.vue b/src/page/markets/ipo.vue
index 7594dc7..68f8ab7 100644
--- a/src/page/markets/ipo.vue
+++ b/src/page/markets/ipo.vue
@@ -73,6 +73,21 @@
           <span>{{ $t("操作确认") }}</span>
         </div>
 
+        <div class="division"></div>
+
+        <div class="popup_item flex-between-start">
+          <span style="color:red">*</span>
+          <van-field
+            v-model="quantity"
+            :label="$t('sl')"
+            :placeholder="$t('请输入')"
+            type="number"
+            :rules="[{ required: true, message: $t('请输入') }]"
+          />
+        </div>
+
+        <div class="division"></div>
+
         <div class="buts flex-between">
           <p class="flex-center" @click="buyShow = false">
             <span>{{ $t("qx") }}</span>
@@ -105,7 +120,8 @@
       searchValue: "",
       buyShow: false, // 购买弹窗控制
       popupData: {}, // 点击购买的数据
-      list: []
+      list: [],
+      quantity: 0, // 购买数量
     };
   },
   watch: {
@@ -128,7 +144,7 @@
     async popupSubmit() {
       let opt = {
         newCode: this.popupData.code,
-        applyNums: this.popupData.orderNumber,
+        applyNums: this.quantity,
         password: this.popupData.password,
         newlistId: this.popupData.newlistId,
         type: this.popupData.type
diff --git a/src/page/user/account.vue b/src/page/user/account.vue
index df5ac36..f51411f 100644
--- a/src/page/user/account.vue
+++ b/src/page/user/account.vue
@@ -50,7 +50,7 @@
       </div>
     </div>
 
-    <div class="account_loan flex-between" @click="toPage('/loan')">
+    <!-- <div class="account_loan flex-between" @click="toPage('/loan')">
       <div class="loan_left">
         <p class="loan_left_title">{{ $t("待还款金额") }}</p>
         <p>$ {{ userInfo.refundAmount || 0 }}</p>
@@ -59,7 +59,7 @@
         {{ $t("我的贷款") }}
         <van-icon name="play" style="margin-left:.5em" />
       </div>
-    </div>
+    </div> -->
 
     <div class="account_card">
       <div class="held_head flex-between">

--
Gitblit v1.9.3