|
@@ -11,7 +11,7 @@
|
|
|
:rules="rules"
|
|
|
:model="queryParam">
|
|
|
<a-row :gutter="15">
|
|
|
- <a-col :md="5" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="月份" required>
|
|
|
<a-range-picker
|
|
|
id="customerCountList-monthBox"
|
|
@@ -24,21 +24,32 @@
|
|
|
/>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="5" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="地区">
|
|
|
<Area id="provinceCountList-areaList" v-model="queryParam.provinceSn" placeholder="请选择省份"></Area>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="5" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-item label="所在区域">
|
|
|
<subarea id="provinceCountList-subarea" ref="subarea" @change="subareaChange"></subarea>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="5" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="区域负责人">
|
|
|
<BizUser id="provinceCountList-bizUserSn" v-model="queryParam.subareaArea.bizUserSn"></BizUser>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
+ <a-col :md="4" :sm="24" v-if="removeReportFlag==1">
|
|
|
+ <a-form-item label="业务类型">
|
|
|
+ <v-select
|
|
|
+ v-model="queryParam.bizType"
|
|
|
+ ref="bizType"
|
|
|
+ id="customerCountList-bizType"
|
|
|
+ code="REMOVE_BIZ_TYPE"
|
|
|
+ placeholder="请选择业务类型"
|
|
|
+ allowClear></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="4" :sm="24">
|
|
|
<a-button
|
|
|
type="primary"
|
|
@@ -138,7 +149,8 @@ export default {
|
|
|
subareaSn: '', // 区域
|
|
|
subareaAreaSn: '', // 分区
|
|
|
bizUserSn: undefined// 区域负责人
|
|
|
- }
|
|
|
+ },
|
|
|
+ bizType: undefined // 业务类型
|
|
|
},
|
|
|
columns: [], // 表格列
|
|
|
countLabel: null, // 统计名称合集
|
|
@@ -260,6 +272,7 @@ export default {
|
|
|
this.queryParam.subareaArea.subareaSn = ''
|
|
|
this.queryParam.subareaArea.subareaAreaSn = ''
|
|
|
this.queryParam.subareaArea.bizUserSn = undefined
|
|
|
+ this.queryParam.bizType = undefined
|
|
|
this.$refs.subarea.clearData()
|
|
|
this.totalData = null
|
|
|
this.$refs.table.clearTable()
|