From e9061b8d23b290ecb4c88b9503b75bc0301ae093 Mon Sep 17 00:00:00 2001 From: bb_pan Date: Thu, 29 Jan 2026 13:52:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/RightToolbar/index.vue | 2 +- src/views/EquipmentLedger/index.vue | 78 ++++++++++++++++++++------- 2 files changed, 59 insertions(+), 21 deletions(-) diff --git a/src/components/RightToolbar/index.vue b/src/components/RightToolbar/index.vue index 368ffda1..96ff3c38 100644 --- a/src/components/RightToolbar/index.vue +++ b/src/components/RightToolbar/index.vue @@ -21,7 +21,7 @@ ghost-class="ghost" > -
+
{{ item.label }} diff --git a/src/views/EquipmentLedger/index.vue b/src/views/EquipmentLedger/index.vue index ffdd9ef0..834768e3 100644 --- a/src/views/EquipmentLedger/index.vue +++ b/src/views/EquipmentLedger/index.vue @@ -230,7 +230,8 @@ - + + @@ -267,26 +268,28 @@ - + - - - - +
+ + - + +
@@ -2024,6 +2027,35 @@ export default { align-items: center; } +/* 仅作用于搜索区域 / 当前页面 */ +.status-operation-bar { + /* el-input-number placeholder / 值 靠左 */ + ::v-deep .el-input-number .el-input__inner { + text-align: left; + } + + /* 单日期 / 时间选择器 */ + ::v-deep .el-date-editor .el-input__inner { + text-align: left; + } + + /* 日期范围选择器整体左对齐 */ + ::v-deep .el-date-editor--daterange { + justify-content: flex-start; + } + + /* 日期范围左右输入框 placeholder 靠左 */ + ::v-deep .el-date-editor--daterange .el-range-input { + text-align: left; + } + + /* 分隔符间距微调(可选) */ + ::v-deep .el-date-editor--daterange .el-range-separator { + margin: 0 8px; + } +} + + .status-stats { display: flex; gap: 20px; @@ -2159,9 +2191,15 @@ export default { } /* 调整删除按钮位置 */ -::v-deep .el-form-item__content { +// ::v-deep .el-form-item__content { +// display: flex; +// align-items: center; +// } + +.range-input { display: flex; align-items: center; + gap: 6px; } .col-center {