From 8fba42cefa944e11e189d8bf8dcb0b50bfe3cc67 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期三, 29 十月 2025 10:54:42 +0800
Subject: [PATCH] fix: 领用单丝添加绞线层级字段

---
 src/pages/production/twist/components/StatisticsModal.vue |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/pages/production/twist/components/StatisticsModal.vue b/src/pages/production/twist/components/StatisticsModal.vue
index 4c1f988..49837ad 100644
--- a/src/pages/production/twist/components/StatisticsModal.vue
+++ b/src/pages/production/twist/components/StatisticsModal.vue
@@ -145,9 +145,12 @@
 <style lang="scss" scoped>
 .statistics-modal {
   width: 320px;
+  max-height: 70vh;
   background: #fff;
   border-radius: 12px;
   overflow: hidden;
+  display: flex;
+  flex-direction: column;
 }
 
 .modal-header {
@@ -156,6 +159,7 @@
   align-items: center;
   padding: 16px 20px;
   border-bottom: 1px solid #f0f0f0;
+  flex-shrink: 0;
 
   .title {
     font-size: 18px;
@@ -166,6 +170,9 @@
 
 .modal-content {
   padding: 20px;
+  overflow-y: auto;
+  flex: 1;
+  min-height: 0;
 }
 
 .summary-section {
@@ -240,6 +247,7 @@
   gap: 12px;
   padding: 16px 20px;
   border-top: 1px solid #f0f0f0;
+  flex-shrink: 0;
 
   .cancel-btn {
     flex: 1;

--
Gitblit v1.9.3