fix:【system 系统管理】ele、antd 的搜索清理属性不对的问题

This commit is contained in:
YunaiV
2025-09-06 10:24:59 +08:00
parent fcaa81ff3b
commit 0539aece1b
90 changed files with 259 additions and 259 deletions

View File

@@ -39,7 +39,7 @@ export function useFormSchema(): VbenFormSchema[] {
label: '上级菜单',
component: 'ApiTreeSelect',
componentProps: {
allowClear: true,
clearable: true,
api: async () => {
const data = await getMenuList();
data.unshift({
@@ -170,7 +170,7 @@ export function useFormSchema(): VbenFormSchema[] {
label: '组件名称',
component: 'AutoComplete',
componentProps: {
allowClear: true,
clearable: true,
filterOption(input: string, option: { value: string }) {
return option.value.toLowerCase().includes(input.toLowerCase());
},