Commit 81022919 authored by zhengke's avatar zhengke

修改

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