From 037031b76c772aafad9f72ed88706e8cd5f81298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Fri, 21 Aug 2026 12:09:02 +0800 Subject: [PATCH] =?UTF-8?q?style(ui):=20=E7=BB=9F=E4=B8=80=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E8=A1=A8=E5=8D=95=E9=A1=B9=E5=BA=95=E9=83=A8=E9=97=B4?= =?UTF-8?q?=E8=B7=9D=E4=B8=BA14px?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 vehicle 下 credit-score-quantification 视图中多个 .el-form-item 的 margin-bottom 从18px调整为14px - 将 vehicle 下 customer-archive 视图中多个 .el-form-item 的 margin-bottom 从16px和18px调整为14px - 在 customer-archive 视图样式中新增 .el-form-item 使用 !important 设定 margin-bottom 为14px - 将 business 下 master-order-editor 组件中 .el-form-item 的 margin-bottom 从16px调整为14px --- src/views/business/components/master-order-editor.vue | 2 +- src/views/vehicle/credit-score-quantification.vue | 4 ++-- src/views/vehicle/customer-archive.vue | 9 +++++---- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/views/business/components/master-order-editor.vue b/src/views/business/components/master-order-editor.vue index 9af1cb4..eaf7cba 100644 --- a/src/views/business/components/master-order-editor.vue +++ b/src/views/business/components/master-order-editor.vue @@ -1748,7 +1748,7 @@ export default { font-size: 16px; } .el-form-item { - margin-bottom: 16px; + margin-bottom: 14px; } } .goods-heading { diff --git a/src/views/vehicle/credit-score-quantification.vue b/src/views/vehicle/credit-score-quantification.vue index 14ed7ee..e335097 100644 --- a/src/views/vehicle/credit-score-quantification.vue +++ b/src/views/vehicle/credit-score-quantification.vue @@ -1102,7 +1102,7 @@ export default { padding: 4px 0 6px; :deep(.el-form-item) { - margin-bottom: 18px; + margin-bottom: 14px; } :deep(.el-form-item__label) { @@ -1141,7 +1141,7 @@ export default { column-gap: 112px; :deep(.el-form-item) { - margin-bottom: 18px; + margin-bottom: 14px; } } } diff --git a/src/views/vehicle/customer-archive.vue b/src/views/vehicle/customer-archive.vue index 4467bf6..180307e 100644 --- a/src/views/vehicle/customer-archive.vue +++ b/src/views/vehicle/customer-archive.vue @@ -4501,7 +4501,7 @@ export default { padding: 8px 36px 0; :deep(.el-form-item) { - margin-bottom: 18px; + margin-bottom: 14px; } :deep(.el-form-item__label) { @@ -4629,7 +4629,7 @@ export default { max-width: 620px; :deep(.el-form-item) { - margin-bottom: 16px; + margin-bottom: 14px; } :deep(.el-input) { @@ -4856,8 +4856,6 @@ export default { .archive-page-form { min-height: 100%; - //padding: 20px 24px 92px; - //background: #fff; } .archive-form__footer { display: flex; @@ -4902,4 +4900,7 @@ export default { .el-col{ margin-bottom: 0; } +.el-form-item { + margin-bottom: 14px !important; +}