fix : 下拉框箭头显示

This commit is contained in:
2024-08-11 22:31:14 +08:00
parent a1fa0dab6a
commit 48430951ef
3 changed files with 13 additions and 8 deletions

View File

@@ -54,7 +54,8 @@ const searchConfig = ref([
clearable: true,
data: [],
filterable: true,
checkStrictly: true
checkStrictly: true,
remote: true
},
},
{
@@ -83,7 +84,8 @@ const searchConfig = ref([
placeholder: '请选择',
clearable: true,
cacheKey: 'normal_disable',
remote: true
remote: true,
filterable: true
}
},
{

View File

@@ -25,7 +25,8 @@ const searchConfig = ref([
clearable: true,
data: [],
filterable: true,
checkStrictly: true
checkStrictly: true,
remote: true
},
on: {
change: async (val) =>{
@@ -43,7 +44,8 @@ const searchConfig = ref([
clearable: true,
data: [],
filterable: true,
checkStrictly: true
checkStrictly: true,
remote: true
}
},
{
@@ -72,7 +74,8 @@ const searchConfig = ref([
placeholder: '请输入',
cacheKey: 'normal_disable',
clearable: true,
remote: true
remote: true,
filterable:true
}
},
])