Commit 74536407 authored by 王悦's avatar 王悦

简易报表跳转界面

parent debc51b9
...@@ -92,6 +92,17 @@ ...@@ -92,6 +92,17 @@
._TCIDAndTCNUMList{ ._TCIDAndTCNUMList{
display: flex; display: flex;
} }
.JumpDivTitleOne{
margin-left:20px;
font-size:14px;
}
.JumpDivTitleTwo{
margin:10px 0 0 20px;
font-size:14px;
}
.JumpSpan{
margin:0 20px;
}
</style> </style>
<template > <template >
...@@ -292,10 +303,11 @@ ...@@ -292,10 +303,11 @@
<em @click.stop="heightQueryBox=!heightQueryBox">高级查询 <i class="iconfont icon-gengduo"></i></em> <em @click.stop="heightQueryBox=!heightQueryBox">高级查询 <i class="iconfont icon-gengduo"></i></em>
</span> --> </span> -->
<button class="hollowFixedBtn" @click="resetPageIndex(),getPageList()">{{$t('pub.searchBtn')}}</button> <button class="hollowFixedBtn" @click="resetPageIndex(),getPageList()">{{$t('pub.searchBtn')}}</button>
<button class="normalBtn" @click="method5()">导出</button> <!-- <button class="normalBtn" @click="method5()">导出</button> -->
</li> </li>
</ul> </ul>
<div>应收金额:{{SumYingShou}} 实收金额:{{SumShiShou}} 待收金额:{{SumDaiShou}} <br/>应付金额:{{SumYingFu}} 实付金额:{{SumShiFu}} 待付金额:{{SumDaiFu}}</div> <div class="JumpDivTitleOne">应收金额:{{SumYingShou}} <span class="JumpSpan">实收金额:{{SumShiShou}}</span> 待收金额:{{SumDaiShou}}</div>
<div class="JumpDivTitleTwo">应付金额:{{SumYingFu}} <span class="JumpSpan">实付金额:{{SumShiFu}}</span> 待付金额:{{SumDaiFu}}</div>
</div> </div>
<div class="_fnDm_content" v-loading='loading'> <div class="_fnDm_content" v-loading='loading'>
<v-table <v-table
...@@ -700,6 +712,7 @@ export default { ...@@ -700,6 +712,7 @@ export default {
eMoney:'', eMoney:'',
CurrencyId:'0', CurrencyId:'0',
CostTypeID:'', CostTypeID:'',
CostTypeIDs:'',
Conditon:'', Conditon:'',
TCID:'', TCID:'',
TradeWay:'0', TradeWay:'0',
...@@ -834,10 +847,10 @@ export default { ...@@ -834,10 +847,10 @@ export default {
this.transactionDate[1]= this.msg.eTradeDate; this.transactionDate[1]= this.msg.eTradeDate;
} }
if(this.$route.query.BranchId){ if(this.$route.query.BranchId){
this.msg.RB_Branch_Id=this.$route.query.BranchId; this.msg.RB_Branch_Id=parseInt(this.$route.query.BranchId);
} }
if(this.$route.query.CostIds){ if(this.$route.query.CostIds){
this.msg.CostTypeID=this.$route.query.CostIds; this.msg.CostTypeID=parseInt(this.$route.query.CostIds);
} }
},components: { },components: {
"my-Bill": myBill, "my-Bill": myBill,
...@@ -915,7 +928,7 @@ export default { ...@@ -915,7 +928,7 @@ export default {
if(!this.msg.CurrencyId)this.msg.CurrencyId=0; if(!this.msg.CurrencyId)this.msg.CurrencyId=0;
if(!this.msg.CostTypeID)this.msg.CostTypeID=0; if(!this.msg.CostTypeID)this.msg.CostTypeID=0;
if(!this.msg.TemplateId)this.msg.TemplateId=0; if(!this.msg.TemplateId)this.msg.TemplateId=0;
if(!this.msg.RB_Branch_Id)this.msg.RB_Branch_Id=-1; if(this.msg.RB_Branch_Id=='undefined')this.msg.RB_Branch_Id=-1;
if(!this.msg.RB_Depart_Id)this.msg.RB_Depart_Id=0; if(!this.msg.RB_Depart_Id)this.msg.RB_Depart_Id=0;
if(!this.msg.UpdateBy)this.msg.UpdateBy=0; if(!this.msg.UpdateBy)this.msg.UpdateBy=0;
if(!this.msg.TCID)this.msg.TCID=0; if(!this.msg.TCID)this.msg.TCID=0;
......
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