优化收入和支出单的查询条件

This commit is contained in:
季圣华
2021-12-05 22:37:56 +08:00
parent 2c395b39d1
commit 82297eb257
3 changed files with 18 additions and 9 deletions

View File

@@ -27,9 +27,9 @@
</a-col>
<template v-if="toggleSearchStatus">
<a-col :md="6" :sm="24">
<a-form-item label="供应商" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="选择供应商" showSearch optionFilterProp="children" v-model="queryParam.organId">
<a-select-option v-for="(item,index) in supList" :key="index" :value="item.id">
<a-form-item label="往来单位" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select placeholder="选择往来单位" showSearch optionFilterProp="children" v-model="queryParam.organId">
<a-select-option v-for="(item,index) in organList" :key="index" :value="item.id">
{{ item.supplier }}
</a-select-option>
</a-select>
@@ -184,7 +184,7 @@
computed: {
},
created () {
this.initSupplier()
this.initOrgan()
this.initUser()
this.initPerson()
},