【fix:bug80446】-查询条件 选择框信息过长显示错误

This commit is contained in:
fengchenchen
2024-01-09 14:52:26 +08:00
parent 0f43d276d2
commit 7626ee4a73
2 changed files with 1 additions and 2 deletions
@@ -1,11 +1,9 @@
<template>
<!-- fix:80446 解决选择内容过长将选择框拉长 -->
<a-select :value="value"
v-bind="$attrs"
v-on="$listeners"
show-search
allowClear
style="max-width: 180px"
option-filter-prop="children"
:filter-option="filterOption">
<a-select-option v-for="item in userList" :key="item.id" :value="item.id" :title="`${ item.realname }(${ item.orgCodeTxt })`">
+1
View File
@@ -667,6 +667,7 @@ body {
margin-right: 10px;
.ant-form-item-control-wrapper {
width: 0;
flex: 1 1;
display: inline-block;
vertical-align: middle;