Merge branch 'feature-particulate-renpy' of http://git.hivekion.com:3000/xiaoguangbin/AnalysisSystemForRadionuclide_vue into feature-particulate-renpy

This commit is contained in:
orgin 2023-08-02 11:15:01 +08:00
commit b1b36d7b05
2 changed files with 16 additions and 4 deletions

View File

@ -234,7 +234,12 @@ export default {
} else {
this.queryParam.stationIds =[]
}
}
},
filterOption(input, option) {
return (
option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
);
},
},
computed: {
formItems() {
@ -258,7 +263,8 @@ export default {
label: 'Stations',
name: 'stationIds',
props: {
allChecked:this.allChecked,
allChecked: this.allChecked,
filterOption:this.filterOption,
placeholder: 'select stations',
mode: 'multiple',
maxTagCount: 1,

View File

@ -178,7 +178,12 @@ export default {
} else {
this.queryParam.stationIds =[]
}
}
},
filterOption(input, option) {
return (
option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
);
},
},
computed: {
formItems() {
@ -202,7 +207,8 @@ export default {
label: 'Stations',
name: 'stationIds',
props: {
allChecked:this.allChecked,
allChecked: this.allChecked,
filterOption:this.filterOption,
placeholder: 'select stations',
mode: 'multiple',
maxTagCount: 1,