优化单据中仓库、账户之类的下拉框

This commit is contained in:
季圣华
2021-07-13 22:52:43 +08:00
parent ee21de663c
commit 23f231c167
21 changed files with 104 additions and 63 deletions

View File

@@ -66,7 +66,8 @@
<a-row class="form-row" :gutter="24">
<a-col :lg="6" :md="12" :sm="24">
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="支出账户">
<a-select placeholder="选择支出账户" v-decorator="[ 'accountId', validatorRules.accountId ]" :dropdownMatchSelectWidth="false">
<a-select placeholder="选择支出账户" v-decorator="[ 'accountId', validatorRules.accountId ]"
:dropdownMatchSelectWidth="false" showSearch optionFilterProp="children">
<a-select-option v-for="(item,index) in accountList" :key="index" :value="item.id">
{{ item.name }}
</a-select-option>
@@ -133,7 +134,7 @@
dataSource: [],
columns: [
{ title: '支出项目',key: 'inOutItemId',width: '20%', type: FormTypes.select, placeholder: '请选择${title}', options: [],
validateRules: [{ required: true, message: '${title}不能为空' }]
allowSearch:true, validateRules: [{ required: true, message: '${title}不能为空' }]
},
{ title: '金额',key: 'eachAmount', width: '10%', type: FormTypes.inputNumber, statistics: true, placeholder: '请选择${title}',
validateRules: [{ required: true, message: '${title}不能为空' }]
@@ -177,8 +178,6 @@
}
},
created () {
this.initInOutItem('out')
this.initAccount()
},
methods: {
//调用完edit()方法之后会自动调用此方法
@@ -200,6 +199,10 @@
let url = this.readOnly ? this.url.detailList : this.url.detailList;
this.requestSubTableData(url, params, this.accountTable);
}
this.initSupplier()
this.initPerson()
this.initInOutItem('out')
this.initAccount()
},
//提交单据时整理成formData
classifyIntoFormData(allValues) {