|
|
@@ -543,7 +543,8 @@
|
|
|
>
|
|
|
导出
|
|
|
</el-button>
|
|
|
- <span style="font-size: 18px">总收益 : {{ shopEarnings }}</span>
|
|
|
+ <span style="font-size: 18px;margin-right: 20px;">总收益 : {{ shopEarnings }}</span>
|
|
|
+ <span style="font-size: 18px">实际总收入 : {{ shopIncomeMoney }}</span>
|
|
|
</div>
|
|
|
<el-table v-loading="tableDataLoading" :data="tableData3.list">
|
|
|
<el-table-column prop="shopId" label="编号" width="80">
|
|
|
@@ -553,6 +554,8 @@
|
|
|
<el-table-column prop="rank" label="排名"> </el-table-column>
|
|
|
<el-table-column prop="shopMoney" label="收益" width="200">
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="shopIncomeMoney" label="实际收入" width="200">
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="payTime" label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
@@ -1242,6 +1245,7 @@ export default {
|
|
|
spEarnings:[],// 商铺类型
|
|
|
spEarningTypeId:"",
|
|
|
shopEarnings:"",// 商铺收益排行总收益
|
|
|
+ shopIncomeMoney:"",// 商铺收益排行实际总收入
|
|
|
|
|
|
exportVisible: false,
|
|
|
exportTitle:"",
|
|
|
@@ -1572,6 +1576,7 @@ export default {
|
|
|
this.tableData3 = returnData;
|
|
|
this.tableData4 = data.data;
|
|
|
this.shopEarnings=data.data.moneyAmount
|
|
|
+ this.shopIncomeMoney=data.data.shopIncomeMoney
|
|
|
}
|
|
|
});
|
|
|
},
|