检查技术搜索添加大小写转换
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
f9e62fe21b
commit
e5efbf7448
|
@ -626,7 +626,7 @@
|
||||||
]"
|
]"
|
||||||
:props="{
|
:props="{
|
||||||
key: 'value',
|
key: 'value',
|
||||||
label: 'label',
|
label: 'value',
|
||||||
}"
|
}"
|
||||||
:render-content="renderFunc"
|
:render-content="renderFunc"
|
||||||
>
|
>
|
||||||
|
@ -932,7 +932,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
filterMethod(query, item) {
|
filterMethod(query, item) {
|
||||||
return item.label.indexOf(query) > -1;
|
return item.value.toLowerCase().indexOf(query.toLowerCase()) > -1;
|
||||||
},
|
},
|
||||||
handleSetModality() {
|
handleSetModality() {
|
||||||
this.modalityListVisible = true;
|
this.modalityListVisible = true;
|
||||||
|
|
Loading…
Reference in New Issue