|
|
@ -7,7 +7,7 @@ |
|
|
|
<div class="searchcon"> |
|
|
|
<el-button size="small" class="searchbtn" @click="clicksearchShow">{{ searchxianshitit }}</el-button> |
|
|
|
<div v-show="isSearchShow" class="search"> |
|
|
|
<el-form ref="listQueryform" :inline="true" :model="listQuery" label-width="100px" class="tab-header"> |
|
|
|
<el-form ref="listQueryform" :inline="true" :model="listQuery" class="tab-header"> |
|
|
|
<el-form-item label="状态"> |
|
|
|
<el-select v-model="listQuery.params.state" placeholder="请选择" clearable class="addinputw"> |
|
|
|
<el-option v-for="item in state_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/> |
|
|
@ -23,6 +23,24 @@ |
|
|
|
<el-option v-for="item in costTitle_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="收款单位名称"> |
|
|
|
<el-input v-model="listQuery.params.receiveCompany" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="收款账号"> |
|
|
|
<el-input v-model="listQuery.params.receiveBankAccount" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="金额"> |
|
|
|
<el-input v-model="listQuery.params.cost" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="付款时需备注内容"> |
|
|
|
<el-input v-model="listQuery.params.busRemarks" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="开户名称"> |
|
|
|
<el-input v-model="listQuery.params.payBank" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="付款账号"> |
|
|
|
<el-input v-model="listQuery.params.payBankAccount" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="审批日期"> |
|
|
|
<el-date-picker v-model="listQuery.params.createStartDate" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|
|
|
<span style="padding: 0 8px">至</span> |
|
|
@ -360,7 +378,13 @@ export default { |
|
|
|
createStartDate: '', |
|
|
|
state: '', |
|
|
|
userSid: '', |
|
|
|
orgPath: '' |
|
|
|
orgPath: '', |
|
|
|
receiveCompany: '', |
|
|
|
receiveBankAccount: '', |
|
|
|
cost: '', |
|
|
|
busRemarks: '', |
|
|
|
payBank: '', |
|
|
|
payBankAccount: '' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 10, |
|
|
@ -537,7 +561,13 @@ export default { |
|
|
|
createStartDate: '', |
|
|
|
state: '', |
|
|
|
userSid: '', |
|
|
|
orgPath: '' |
|
|
|
orgPath: '', |
|
|
|
receiveCompany: '', |
|
|
|
receiveBankAccount: '', |
|
|
|
cost: '', |
|
|
|
busRemarks: '', |
|
|
|
payBank: '', |
|
|
|
payBankAccount: '' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 10, |
|
|
|