style(customer-archive): 调整表单项、页脚和列的间距样式

- 修复 archive-form__footer 页脚布局间距和定位样式
- 去除 .el-col 底部默认外边距,防止多余间距
- 注释掉 element-ui.scss 中 el-form-item 的 margin-bottom 样式,避免样式冲突
This commit is contained in:
2026-08-21 11:53:44 +08:00
parent 792356b146
commit 73b15e2a83
2 changed files with 6 additions and 5 deletions
+3 -2
View File
@@ -4859,12 +4859,10 @@ export default {
//padding: 20px 24px 92px;
//background: #fff;
}
.archive-form__footer {
display: flex;
justify-content: flex-end;
gap: 12px;
.archive-page-form & {
position: fixed;
right: 0;
@@ -4901,4 +4899,7 @@ export default {
max-height: 72vh;
overflow: auto;
}
.el-col{
margin-bottom: 0;
}
</style>