|
|
@@ -69,7 +69,7 @@
|
|
|
<el-select
|
|
|
clearable
|
|
|
filterable multiple
|
|
|
- v-show="filter.pageVo.reportType == 'MNTHSITE' || filter.pageVo.reportType == 'APENDIXF' || filter.pageVo.reportType === 'APENDIXH'"
|
|
|
+ v-show="isAppendixSite"
|
|
|
v-model="filter.pageVo.sitePks"
|
|
|
class="filter-input"
|
|
|
placeholder="Sites">
|
|
|
@@ -257,6 +257,16 @@ export default {
|
|
|
hasGrouptype: ["MNTHFLET", "MNTHMEMB", "MNTHPART"]
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ isAppendixSite() {
|
|
|
+ return this.filter.pageVo.reportType == 'MNTHSITE'
|
|
|
+ || this.filter.pageVo.reportType == 'APENDIXF'
|
|
|
+ || this.filter.pageVo.reportType === 'APENDIXH'
|
|
|
+ || this.filter.pageVo.reportType === 'APENDIXH1'
|
|
|
+ || this.filter.pageVo.reportType === 'APENDIXF1'
|
|
|
+ || this.filter.pageVo.reportType === 'APENDIXF2'
|
|
|
+ }
|
|
|
+ },
|
|
|
created() {
|
|
|
this.getFilterOptions();
|
|
|
},
|