|
@@ -71,6 +71,7 @@
|
|
|
v-model="filter.pageVo.providerPks"
|
|
v-model="filter.pageVo.providerPks"
|
|
|
class="filter-input"
|
|
class="filter-input"
|
|
|
placeholder="Service Provider"
|
|
placeholder="Service Provider"
|
|
|
|
|
+ collapse-tags
|
|
|
clearable
|
|
clearable
|
|
|
multiple>
|
|
multiple>
|
|
|
<el-option
|
|
<el-option
|
|
@@ -89,7 +90,8 @@
|
|
|
v-show="isAppendixSite"
|
|
v-show="isAppendixSite"
|
|
|
v-model="filter.pageVo.sitePks"
|
|
v-model="filter.pageVo.sitePks"
|
|
|
class="filter-input"
|
|
class="filter-input"
|
|
|
- placeholder="Sites">
|
|
|
|
|
|
|
+ placeholder="Sites"
|
|
|
|
|
+ style="max-width: 400px;">
|
|
|
<el-option
|
|
<el-option
|
|
|
v-for="(item, index) in options.siteOptions"
|
|
v-for="(item, index) in options.siteOptions"
|
|
|
:key="index"
|
|
:key="index"
|
|
@@ -99,6 +101,7 @@
|
|
|
<el-select
|
|
<el-select
|
|
|
clearable
|
|
clearable
|
|
|
multiple
|
|
multiple
|
|
|
|
|
+ collapse-tags
|
|
|
v-show="filter.pageVo.reportType == 'MNTHFLET'"
|
|
v-show="filter.pageVo.reportType == 'MNTHFLET'"
|
|
|
v-model="filter.pageVo.groupPks"
|
|
v-model="filter.pageVo.groupPks"
|
|
|
class="filter-input"
|
|
class="filter-input"
|
|
@@ -112,6 +115,7 @@
|
|
|
<el-select
|
|
<el-select
|
|
|
clearable
|
|
clearable
|
|
|
multiple
|
|
multiple
|
|
|
|
|
+ collapse-tags
|
|
|
v-show="filter.pageVo.reportType == 'MNTHMEMB'"
|
|
v-show="filter.pageVo.reportType == 'MNTHMEMB'"
|
|
|
v-model="filter.pageVo.groupPks"
|
|
v-model="filter.pageVo.groupPks"
|
|
|
class="filter-input"
|
|
class="filter-input"
|
|
@@ -125,6 +129,7 @@
|
|
|
<el-select
|
|
<el-select
|
|
|
clearable
|
|
clearable
|
|
|
multiple
|
|
multiple
|
|
|
|
|
+ collapse-tags
|
|
|
v-show="filter.pageVo.reportType == 'MNTHPART'"
|
|
v-show="filter.pageVo.reportType == 'MNTHPART'"
|
|
|
v-model="filter.pageVo.groupPks"
|
|
v-model="filter.pageVo.groupPks"
|
|
|
class="filter-input"
|
|
class="filter-input"
|
|
@@ -135,6 +140,20 @@
|
|
|
:label="item.name"
|
|
:label="item.name"
|
|
|
:value="item.value"/>
|
|
:value="item.value"/>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
|
|
+ <el-select
|
|
|
|
|
+ clearable
|
|
|
|
|
+ multiple
|
|
|
|
|
+ collapse-tags
|
|
|
|
|
+ v-show="filter.pageVo.reportType == 'MNTHGCU'"
|
|
|
|
|
+ v-model="filter.pageVo.groupPks"
|
|
|
|
|
+ class="filter-input"
|
|
|
|
|
+ placeholder="Groups">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="(item, index) in options.groupOptions"
|
|
|
|
|
+ :key="index"
|
|
|
|
|
+ :label="item.name"
|
|
|
|
|
+ :value="item.value"/>
|
|
|
|
|
+ </el-select>
|
|
|
<el-button
|
|
<el-button
|
|
|
class="generate-button"
|
|
class="generate-button"
|
|
|
type="primary"
|
|
type="primary"
|
|
@@ -288,7 +307,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
}]
|
|
}]
|
|
|
},
|
|
},
|
|
|
- hasGrouptype: ["MNTHFLET", "MNTHMEMB", "MNTHPART"]
|
|
|
|
|
|
|
+ hasGrouptype: ["MNTHFLET", "MNTHMEMB", "MNTHPART","MNTHGCU"]
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
computed: {
|
|
computed: {
|
|
@@ -493,7 +512,7 @@ export default {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- margin-bottom: 15px;
|
|
|
|
|
|
|
+ margin-bottom: 10px;
|
|
|
.el-form-item__label {
|
|
.el-form-item__label {
|
|
|
color: #333;
|
|
color: #333;
|
|
|
width: 100px;
|
|
width: 100px;
|
|
@@ -516,6 +535,7 @@ export default {
|
|
|
.generate-button {
|
|
.generate-button {
|
|
|
width: 100px;
|
|
width: 100px;
|
|
|
height: 40px;
|
|
height: 40px;
|
|
|
|
|
+ margin: 5px 0;
|
|
|
margin-left: 10px;
|
|
margin-left: 10px;
|
|
|
}
|
|
}
|
|
|
|
|
|