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 ++++++++++++++++++--
 1 files changed, 18 insertions(+), 2 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

--
Gitblit v1.9.3