模板选择时添加筛选功能

This commit is contained in:
huangdeliang
2021-03-11 11:37:54 +08:00
parent fc9086103f
commit 59dabbc9d3
3 changed files with 84 additions and 2 deletions

View File

@ -9,7 +9,7 @@
:step="5"
:value="value"
@blur="handleOnBlur"
@keyup.enter="handleEnterClick"
@keydown.enter="handleEnterClick"
/>
</div>
</template>

View File

@ -14,7 +14,9 @@
:key="item.dictValue"
:value="item.dictValue"
>
{{ item.dictLabel }}
<div style="width: 120px">
{{ item.dictLabel }}
</div>
</option>
</select>
<select
@ -150,6 +152,10 @@ export default {
select::-ms-expand {
display: none;
}
option {
width: 140px;
}
}
}
</style>