From 67ceece23d6313a76944fd4e7271d3ad28d41783 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Sat, 22 Nov 2025 11:31:37 +0800
Subject: [PATCH] feat:样式调整

---
 src/views/tickets/ticketComponent/TicketDetailDialog.vue |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/src/views/tickets/ticketComponent/TicketDetailDialog.vue b/src/views/tickets/ticketComponent/TicketDetailDialog.vue
index 0f3d8ac..0ea3447 100644
--- a/src/views/tickets/ticketComponent/TicketDetailDialog.vue
+++ b/src/views/tickets/ticketComponent/TicketDetailDialog.vue
@@ -391,7 +391,7 @@
 import { ElMessage} from 'element-plus';
 const store = useStore()
 const userInfo = computed(() => store.state.user.userInfo)
-console.log('userInfo',userInfo.value);
+// console.log('userInfo',userInfo.value);
 // 定义props
 const props = defineProps({
   modelValue: {
@@ -780,6 +780,7 @@
  transition: max-height 0.3s ease-out;
   .el-dialog__body {
     border-top: 0.1rem solid #f0f0f0;
+    overflow: hidden; 
   }
 }
 
@@ -869,7 +870,7 @@
 
 .dialog-footer1-new {
   position: sticky;
-  bottom: 28px;
+  // bottom: 28px;
   left: 0;
   right: 0;
   background: white;
@@ -1066,11 +1067,13 @@
 }
 
 .PopUpTableScrolls {
-  max-height: 600px;
-  overflow-y: scroll;
+  max-height: calc(100vh - 380px); 
+  min-height: 200px; 
+  overflow-y: auto; 
   overflow-x: hidden;
+  padding-bottom: 30px;
+  scrollbar-width: thin; 
 }
-
 .media-box {
   width: 100%;
   border: 1px solid #dcdfe6;

--
Gitblit v1.9.3