|
@@ -48,7 +48,15 @@
|
|
|
<customerService id="regionTypeSalesList-customerName" ref="customerName" v-model="queryParam.bizUserSn"></customerService>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="(activeKey==0&&!isShowCustomerSearch)?24:activeKey==1&&isShowCustomerSearch?24:6" :sm="24" style="margin-bottom: 10px;" :style="{textAlign:(activeKey==0&&!isShowCustomerSearch)?'center':(activeKey==1&&isShowCustomerSearch)?'center':'left'}">
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-model-item label="新/老客户">
|
|
|
+ <a-select id="regionTypeSalesList-dealerNewFlag" v-model="queryParam.dealerNewFlag" placeholder="请选择" allowClear>
|
|
|
+ <a-select-option value="1">新客户</a-select-option>
|
|
|
+ <a-select-option value="0">老客户</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :md="(activeKey==1&&!isShowCustomerSearch)?24:6" :sm="24" style="margin-bottom: 10px;" :style="{textAlign:(activeKey==1&&!isShowCustomerSearch)?'center':'left'}">
|
|
|
<a-button type="primary" @click="handleSearch" :disabled="disabled" id="regionTypeSalesList-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="regionTypeSalesList-reset">重置</a-button>
|
|
|
<a-button
|
|
@@ -128,7 +136,8 @@ export default {
|
|
|
bizUserSn: undefined// 区域负责人
|
|
|
},
|
|
|
salesStatusType: 'REAL_SALES', // 销售状态
|
|
|
- bizUserSn: undefined// 客服
|
|
|
+ bizUserSn: undefined, // 客服
|
|
|
+ dealerNewFlag: undefined
|
|
|
},
|
|
|
rules: {
|
|
|
'time': [{ required: true, message: '请选择时间', trigger: 'change' }],
|
|
@@ -204,6 +213,7 @@ export default {
|
|
|
this.queryParam.subareaArea.subareaAreaSn = undefined
|
|
|
this.queryParam.subareaArea.bizUserSn = undefined
|
|
|
this.queryParam.bizUserSn = undefined
|
|
|
+ this.queryParam.dealerNewFlag = undefined
|
|
|
this.queryParam.salesStatusType = 'REAL_SALES'
|
|
|
if (this.activeKey == 0) {
|
|
|
this.$refs.subarea.clearData()
|