fix:修改兼容方式,兼容Form 组件中contentMap中类输入框或下拉选择的所有组件,特殊兼容 InputNumber 组件

This commit is contained in:
huanlirui 2024-01-29 15:16:31 +08:00
parent f44e48d08d
commit ab98ceb85f
1 changed files with 7 additions and 4 deletions

View File

@ -425,11 +425,14 @@ export default defineComponent({
}
.@{elNamespace}-form--inline {
.@{elNamespace}-input {
min-width: 189.5px;
:deep(.el-form-item__content) {
& > :first-child {
min-width: 229.5px;
}
.@{elNamespace}-select {
min-width: 189.5px;
}
.@{elNamespace}-input-number {
// 229.5pxel-input-number,
min-width: 229.5px;
}
}
</style>