This commit is contained in:
linfso 2025-05-20 10:21:48 +08:00
parent 601df3d024
commit 900a71f7a9
2 changed files with 18 additions and 1 deletions

View File

@ -221,6 +221,7 @@ export default {
$route () {
if(this.$route.query.action=='queryBIData'){
this.queryParams.settleBillNo=this.$route.query.settleBillNo;
this.queryParams.payId=this.$route.query.payId;
this.queryParams.params.queryDataType=this.$route.query.queryDataType;
this.getList();
}
@ -231,6 +232,7 @@ export default {
console.log("====>queryInfo====>",this.queryInfo);
if(this.$route.query.action=='queryBIData'){
this.queryParams.settleBillNo=this.$route.query.settleBillNo;
this.queryParams.payId=this.$route.query.payId;
this.queryParams.params.queryDataType=this.$route.query.queryDataType;
this.getList();
}

View File

@ -97,11 +97,13 @@
@selection-change="handleSelectionChange"
@sort-change="handleSortChange"
@row-dblclick="handleShowBillList"
show-summary
:summary-method="getSummaries"
>
<div slot="toolbar">
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
@ -361,6 +363,19 @@ export default {
return qParams;
},
handleShowBillList(row){
let item0=row;
this.$router.push(
{
path: '/BIStatData/PayBackRecordList',
query: {
action: "queryBIData",
payId: item0.payId,
'_t':(new Date()).getTime()
}
}
);
},
handleShowCanlender(){
this.$router.push(
{