取消过滤条件
This commit is contained in:
@@ -410,10 +410,7 @@ function wsMessage(res: Record<string, any>) {
|
||||
}
|
||||
}
|
||||
|
||||
//自动完成框不区分大小写
|
||||
function filterOption(input: string, option: any) {
|
||||
return option.value.toUpperCase().indexOf(input.toUpperCase()) >= 0;
|
||||
}
|
||||
|
||||
|
||||
onMounted(() => {
|
||||
// 初始字典数据
|
||||
@@ -512,7 +509,6 @@ onBeforeUnmount(() => {
|
||||
<a-auto-complete
|
||||
v-model:value="queryParams.tenantName"
|
||||
:options="queryParams.tenantNameArr"
|
||||
:filter-option="filterOption"
|
||||
></a-auto-complete>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
@@ -451,10 +451,7 @@ function wsMessage(res: Record<string, any>) {
|
||||
}
|
||||
}
|
||||
|
||||
//自动完成框不区分大小写
|
||||
function filterOption(input: string, option: any) {
|
||||
return option.value.toUpperCase().indexOf(input.toUpperCase()) >= 0;
|
||||
}
|
||||
|
||||
|
||||
onMounted(() => {
|
||||
// 初始字典数据
|
||||
@@ -570,7 +567,6 @@ onBeforeUnmount(() => {
|
||||
<a-auto-complete
|
||||
v-model:value="queryParams.tenantName"
|
||||
:options="queryParams.tenantNameArr"
|
||||
:filter-option="filterOption"
|
||||
></a-auto-complete>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
@@ -409,10 +409,7 @@ function wsMessage(res: Record<string, any>) {
|
||||
}
|
||||
}
|
||||
|
||||
//自动完成框不区分大小写
|
||||
function filterOption(input: string, option: any) {
|
||||
return option.value.toUpperCase().indexOf(input.toUpperCase()) >= 0;
|
||||
}
|
||||
|
||||
|
||||
onMounted(() => {
|
||||
// 初始字典数据
|
||||
@@ -501,7 +498,6 @@ onBeforeUnmount(() => {
|
||||
<a-auto-complete
|
||||
v-model:value="queryParams.tenantName"
|
||||
:options="queryParams.tenantNameArr"
|
||||
:filter-option="filterOption"
|
||||
></a-auto-complete>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
@@ -463,10 +463,7 @@ function wsMessage(res: Record<string, any>) {
|
||||
});
|
||||
}
|
||||
}
|
||||
//自动完成框不区分大小写
|
||||
function filterOption(input: string, option: any) {
|
||||
return option.value.toUpperCase().indexOf(input.toUpperCase()) >= 0;
|
||||
}
|
||||
|
||||
|
||||
onMounted(() => {
|
||||
// 获取列表数据
|
||||
@@ -542,7 +539,6 @@ onBeforeUnmount(() => {
|
||||
<a-auto-complete
|
||||
v-model:value="queryParams.tenantName"
|
||||
:options="queryParams.tenantNameArr"
|
||||
:filter-option="filterOption"
|
||||
></a-auto-complete>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
Reference in New Issue
Block a user