fix:修改兼容方式,兼容Form 组件中contentMap中类输入框或下拉选择的所有组件,特殊兼容 InputNumber 组件
This commit is contained in:
parent
f44e48d08d
commit
ab98ceb85f
|
@ -425,11 +425,14 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
.@{elNamespace}-form--inline {
|
.@{elNamespace}-form--inline {
|
||||||
.@{elNamespace}-input {
|
:deep(.el-form-item__content) {
|
||||||
min-width: 189.5px;
|
& > :first-child {
|
||||||
|
min-width: 229.5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.@{elNamespace}-select {
|
.@{elNamespace}-input-number {
|
||||||
min-width: 189.5px;
|
// 229.5px是兼容el-input-number的最小宽度,
|
||||||
|
min-width: 229.5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue