Merge branch 'feature-particulate-renpy' of http://git.hivekion.com:3000/xiaoguangbin/AnalysisSystemForRadionuclide_vue into feature-particulate-renpy
This commit is contained in:
commit
b1b36d7b05
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue
Block a user