|
@@ -135,6 +135,17 @@
|
|
|
</a-select>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-item label="新客户首笔订单">
|
|
|
+ <v-select
|
|
|
+ v-model="queryParam.newCustFlag"
|
|
|
+ ref="newCustFlag"
|
|
|
+ id="salesDetailsList-newCustFlag"
|
|
|
+ code="FLAG"
|
|
|
+ placeholder="请选择是否新客户首笔订单"
|
|
|
+ allowClear></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
</template>
|
|
|
<a-col :md="6" :sm="24" style="margin-bottom: 10px;">
|
|
|
<a-button style="margin-left: 5px" type="primary" @click="handleSearch" :disabled="disabled" id="salesDetailsList-refresh">查询</a-button>
|
|
@@ -270,7 +281,8 @@ export default {
|
|
|
giftFLag: undefined, // 是否是促销产品 1是 0不是
|
|
|
promotionFlag: undefined, // 产品类型
|
|
|
bizUserSn: undefined, // 客服
|
|
|
- dealerNewFlag: undefined // 客户类型
|
|
|
+ dealerNewFlag: undefined, // 客户类型
|
|
|
+ newCustFlag: undefined
|
|
|
},
|
|
|
isAveragePrice: false, // 平均公斤单价
|
|
|
productType: [], // 产品分类
|
|
@@ -473,6 +485,7 @@ export default {
|
|
|
this.queryParam.promotionFlag = undefined
|
|
|
this.queryParam.bizUserSn = undefined
|
|
|
this.queryParam.dealerNewFlag = undefined
|
|
|
+ this.queryParam.newCustFlag = undefined
|
|
|
if (this.advanced) {
|
|
|
this.$refs.subarea.clearData()
|
|
|
this.$refs.areaList.clearData()
|