Commit ef2101c1 authored by liudong1993's avatar liudong1993

1

parent 4a4f7327
...@@ -179,6 +179,29 @@ ...@@ -179,6 +179,29 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4" :gutter="35">
<el-form-item :label="$t('objFill.v101.FinancialModule.dianfudx')">
<el-select v-model='msg.KingdeeClientID'
filterable
remote
reserve-keyword
:placeholder="$t('pub.PleaseKeyWords')"
:remote-method="remoteMethod2"
:loading="AccountLoading">
<el-option v-for='item in ClientAccountList2'
:label='`${item.AccountAlias}(${item.AccountHolder}/${item.CardNum})`'
:value='item.ID'
:key='item.ID'>
<div>
<span>{{`${item.AccountAlias}(${item.AccountHolder}/${item.CardNum})`}}</span>
<span style="margin-left: 15px;">
<el-tag size="mini" v-if="item.Status==1">{{$t('pub.fressSel')}}</el-tag>
</span>
</div>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row> </el-row>
</el-form> </el-form>
<ul> <ul>
...@@ -747,6 +770,7 @@ export default { ...@@ -747,6 +770,7 @@ export default {
productionDate:[], productionDate:[],
productionDateByTC:[], productionDateByTC:[],
ClientAccountList:[], ClientAccountList:[],
ClientAccountList2:[],
GetCostTypeList:[], GetCostTypeList:[],
CompanyList:[], CompanyList:[],
loadingTable:false, loadingTable:false,
...@@ -923,6 +947,22 @@ export default { ...@@ -923,6 +947,22 @@ export default {
this.AccountLoading = false this.AccountLoading = false
}, err => {}) }, err => {})
}, },
remoteMethod2(query) {
if (query !== '') {
this.ClientAccountMsg.KeyWord = query
this.AccountLoading = true;
this.financeinfo_post_GetClientAccountList2()
} else {
this.ClientAccountList2 = [];
}
},
financeinfo_post_GetClientAccountList2(){ //获取付款对象
this.apipost('financeinfo_post_GetClientAccountList',this.ClientAccountMsg, res => {
let data = res.data.data;
this.ClientAccountList2 = data;
this.AccountLoading = false
}, err => {})
},
timeAdd(){ // 日期格式 timeAdd(){ // 日期格式
if(!this.productionDate){ if(!this.productionDate){
this.msg.sTradeDate = ''; this.msg.sTradeDate = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment