Commit 81022919 authored by zhengke's avatar zhengke

修改

parent eebccb63
......@@ -73,7 +73,7 @@
</el-col>
<el-col :span="4" :gutter="35">
<el-form-item :label="$t('fnc.fkduixiang')">
<el-select filterable v-model='msg.ClientID' >
<el-select filterable v-model='msg.ClientID' @change='getClientId(msg.ClientID)'>
<el-option v-for='item in ClientAccountList'
:label='`${item.AccountAlias}(${item.AccountHolder})`'
:value='item.ID'
......@@ -137,7 +137,7 @@
<div class="cm_content">
<table class="po_content singeRowTable" style="border:1px solid #E6E6E6;" cellspacing="0" cellpadding="0" v-loading="loadingTable">
<tr>
<th><input type="checkbox" v-model="isCheckAll" @change="checkAllOrder()"/></th>
<th><input type="checkbox" v-if="isShowCheckAll" v-model="isCheckAll" @change="checkAllOrder()"/></th>
<th>{{$t('system.query_company')}}</th>
<th>{{$t('fnc.danhao')}}</th>
<th>{{$t('fnc.a_zhaiyao')}}</th>
......@@ -419,6 +419,8 @@ export default {
userInfo:{},
//是否全选
isCheckAll:false,
//是否显示全选框
isShowCheckAll:false,
}
},
created(){
......@@ -451,6 +453,12 @@ export default {
}
},methods:{
//选择付款对象出现全选框
getClientId(id){
if(id>0){
this.isShowCheckAll=true;
}
},
Export(){
let msg=this.msg;
msg.EmployeeId = this.userInfo.EmployeeId;
......
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