稽查查询下拉选择框可搜索
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2025-01-16 16:18:14 +08:00
parent 28ea52797e
commit 6977ed3713
2 changed files with 5 additions and 2 deletions

View File

@ -47,3 +47,6 @@
.el-range-separator {
box-sizing: content-box;
}
.el-select-dropdown__wrap{
max-height: 350px;
}

View File

@ -62,13 +62,13 @@
<div>
<!-- 功能模块 -->
<el-form-item :label="$t('trials:auditRecord:table:funcModule')">
<el-select v-model="searchData.ModuleType" style="width:120px" clearable @change="getModuleTypeDescriptionList">
<el-select v-model="searchData.ModuleType" style="width:120px" filterable clearable @change="getModuleTypeDescriptionList">
<el-option v-for="item of $d.ModuleType" :value="item.id" :label="item.label" :key="`ModuleType${item.value}`"/>
</el-select>
</el-form-item>
<!-- 操作名 -->
<el-form-item :label="$t('trials:auditRecord:table:operationName')">
<el-select v-model="searchData.Description" style="width:120px" clearable>
<el-select v-model="searchData.Description" style="width:120px" filterable clearable>
<el-option v-for="item of DescriptionOptions" :value="item" :label="item" :key="item"/>
</el-select>
</el-form-item>