|
@@ -91,6 +91,7 @@
|
|
<th class="el-table__cell is-leaf"><div class="cell"></div></th>
|
|
<th class="el-table__cell is-leaf"><div class="cell"></div></th>
|
|
<th class="el-table__cell is-leaf"><div class="cell">线上充值总额</div></th>
|
|
<th class="el-table__cell is-leaf"><div class="cell">线上充值总额</div></th>
|
|
<th class="el-table__cell is-leaf"><div class="cell">人工充值</div></th>
|
|
<th class="el-table__cell is-leaf"><div class="cell">人工充值</div></th>
|
|
|
|
+ <th class="el-table__cell is-leaf"><div class="cell">人工充值(不记返点)</div></th>
|
|
<th class="el-table__cell is-leaf"><div class="cell">充值总额</div></th>
|
|
<th class="el-table__cell is-leaf"><div class="cell">充值总额</div></th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
@@ -99,6 +100,7 @@
|
|
<td class="el-table__cell is-leaf" rowspan="6"><div class="cell">充值总额</div></td>
|
|
<td class="el-table__cell is-leaf" rowspan="6"><div class="cell">充值总额</div></td>
|
|
<td class="el-table__cell is-leaf"><div class="cell">支付宝:{{getVal(getCharge('8085'),0)}}</div></td>
|
|
<td class="el-table__cell is-leaf"><div class="cell">支付宝:{{getVal(getCharge('8085'),0)}}</div></td>
|
|
<td class="el-table__cell is-leaf" rowspan="6"><div class="cell">充值:{{getVal(getCharge('4'),1)}}</div></td>
|
|
<td class="el-table__cell is-leaf" rowspan="6"><div class="cell">充值:{{getVal(getCharge('4'),1)}}</div></td>
|
|
|
|
+ <td class="el-table__cell is-leaf" rowspan="6"><div class="cell">充值:{{getVal(getCharge('5'),1)}}</div></td>
|
|
<td class="el-table__cell is-leaf" rowspan="6"><div class="cell">总额:{{getTotal()}}</div></td>
|
|
<td class="el-table__cell is-leaf" rowspan="6"><div class="cell">总额:{{getTotal()}}</div></td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
@@ -487,6 +489,8 @@ export default {
|
|
let bank = this.getCharge("8087");
|
|
let bank = this.getCharge("8087");
|
|
//线下
|
|
//线下
|
|
let down = this.getCharge("4");
|
|
let down = this.getCharge("4");
|
|
|
|
+ //线下
|
|
|
|
+ let downBJ = this.getCharge("5");
|
|
let total = 0;
|
|
let total = 0;
|
|
let totalService = 0;
|
|
let totalService = 0;
|
|
if (down["diamondCoinDownSum"] != undefined) {
|
|
if (down["diamondCoinDownSum"] != undefined) {
|
|
@@ -495,6 +499,12 @@ export default {
|
|
if(down["platformServiceDiamondCoinDownSum"] != undefined){
|
|
if(down["platformServiceDiamondCoinDownSum"] != undefined){
|
|
totalService += down["platformServiceDiamondCoinDownSum"];
|
|
totalService += down["platformServiceDiamondCoinDownSum"];
|
|
}
|
|
}
|
|
|
|
+ if (downBJ["diamondCoinDownSum"] != undefined) {
|
|
|
|
+ total += down["diamondCoinDownSum"];
|
|
|
|
+ }
|
|
|
|
+ if(downBJ["platformServiceDiamondCoinDownSum"] != undefined){
|
|
|
|
+ totalService += down["platformServiceDiamondCoinDownSum"];
|
|
|
|
+ }
|
|
|
|
|
|
if (ali["diamondCoinUpSum"] != undefined) {
|
|
if (ali["diamondCoinUpSum"] != undefined) {
|
|
total += ali["diamondCoinUpSum"];
|
|
total += ali["diamondCoinUpSum"];
|