给销售相关的单据页面增加销售人员的查询条件

This commit is contained in:
jishenghua
2025-06-17 23:34:59 +08:00
parent c6f7b63e95
commit 30007c1c3d
5 changed files with 45 additions and 3 deletions

View File

@@ -72,6 +72,15 @@
</a-select>
</a-form-item>
</a-col>
<a-col :md="6" :sm="24">
<a-form-item label="销售人员" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="请选择销售人员" showSearch allow-clear optionFilterProp="children" v-model="queryParam.salesMan">
<a-select-option v-for="(item,index) in salesManList" :key="index" :value="item.value">
{{ item.text }}
</a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :md="6" :sm="24">
<a-form-item label="单据备注" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input placeholder="请输入单据备注" v-model="queryParam.remark"></a-input>
@@ -224,6 +233,7 @@
depotId: undefined,
creator: undefined,
status: undefined,
salesMan: undefined,
remark: ""
},
prefixNo: 'XSDD',
@@ -294,6 +304,7 @@
created() {
this.initSystemConfig()
this.initCustomer()
this.initSalesman()
this.initUser()
this.getSystemConfig()
this.initQuickBtn()