From 6322854f330655cb409c1574a3743b55d87e1a99 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期二, 14 十月 2025 11:04:55 +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