删选条件多选样式优化

dianlixunjian
刘妍 2024-09-06 17:11:15 +08:00
parent bb5f891c8e
commit 1c12e27047
6 changed files with 25 additions and 12 deletions

View File

@ -337,4 +337,7 @@
min-width: 48%;
}
}
::v-deep .ant-select-selection-overflow-item:first-child .ant-select-selection-item {
width: 80px;
}
</style>

View File

@ -343,4 +343,7 @@
.select-dropdown {
display: flex;
}
::v-deep .ant-select-selection-overflow-item:first-child .ant-select-selection-item {
width: 80px;
}
</style>

View File

@ -321,4 +321,7 @@
min-width: 48%;
}
}
::v-deep .ant-select-selection-overflow-item:first-child .ant-select-selection-item {
width: 80px;
}
</style>

View File

@ -314,7 +314,7 @@ export const searchFormSchema: FormSchema[] = [
format: 'YYYY-MM-DD',
placeholder: ['开始日期', '结束日期'],
},
colProps: { span: 4 },
colProps: { span: 6 },
},
{
field: 'tubannum_base',

View File

@ -345,4 +345,7 @@
min-width: 48%;
}
}
::v-deep .ant-select-selection-overflow-item:first-child .ant-select-selection-item {
width: 80px;
}
</style>

View File

@ -119,16 +119,7 @@ export const searchFormSchema: FormSchema[] = [
options: [],
},
},
{
field: '[startTime, endTime]',
label: '下发时间',
component: 'RangePicker',
colProps: { span: 4 },
componentProps: {
format: 'YYYY-MM-DD',
placeholder: ['开始日期', '结束日期'],
},
},
{
field: 'typename',
label: '图斑类型',
@ -255,10 +246,20 @@ export const searchFormSchema: FormSchema[] = [
component: 'Input',
colProps: { span: 4 },
},
{
field: '[startTime, endTime]',
label: '下发时间',
component: 'RangePicker',
colProps: { span: 5 },
componentProps: {
format: 'YYYY-MM-DD',
placeholder: ['开始日期', '结束日期'],
},
},
{
field: 'caseNo',
label: '图斑编号',
component: 'Input',
colProps: { span: 5 },
colProps: { span: 4 },
},
];