From 716b64bf299622a3d0dad0d3cc4e1e2e4306bd7f Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期三, 26 八月 2026 15:40:20 +0800
Subject: [PATCH] fix(monitor): 修正操作时间选择器的日期格式
---
src/views/productionManagement/productionOrder/index.vue | 16 +++++++++++++---
1 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/src/views/productionManagement/productionOrder/index.vue b/src/views/productionManagement/productionOrder/index.vue
index 4d71881..6e0c55a 100644
--- a/src/views/productionManagement/productionOrder/index.vue
+++ b/src/views/productionManagement/productionOrder/index.vue
@@ -125,7 +125,8 @@
<!-- 鏉ユ簮鏁版嵁寮圭獥 -->
<el-dialog v-model="sourceDataDialogVisible"
title="鏉ユ簮鏁版嵁"
- width="1200px">
+ width="1200px"
+ custom-class="source-data-dialog">
<div v-if="sourceRowData"
class="applyno-summary1">
<div class="summary-item">
@@ -944,6 +945,17 @@
text-shadow: 0 1px 2px rgba(64, 158, 255, 0.2);
}
+ .source-data-dialog {
+ display: flex;
+ flex-direction: column;
+ max-height: 80vh;
+
+ .el-dialog__body {
+ overflow-y: auto;
+ flex: 1;
+ }
+ }
+
.source-table-container {
margin-top: 20px;
}
@@ -952,8 +964,6 @@
display: flex;
flex-direction: column;
gap: 16px;
- max-height: 500px;
- overflow-y: auto;
padding: 10px;
background-color: #f5f7fa;
border-radius: 4px;
--
Gitblit v1.9.3