|
|
@@ -2,9 +2,9 @@
|
|
|
<ele-page flex-table>
|
|
|
<page-search @search="reload" />
|
|
|
|
|
|
- <common-table ref="pageRef" :pageConfig="pageConfig" :columns="columns">
|
|
|
+ <common-table ref="pageRef" :pageConfig="pageConfig" :columns="columns" :tools="false">
|
|
|
<template #toolbar>
|
|
|
- <div class="flex items-center mb-4">
|
|
|
+ <div class="flex flex-wrap items-center mb-4">
|
|
|
<el-statistic
|
|
|
:value="statistics.totalWithdrawMoney"
|
|
|
title="提现累计金额"
|
|
|
@@ -21,7 +21,7 @@
|
|
|
/>
|
|
|
<el-statistic
|
|
|
:value="statistics.auditWithdrawMoney"
|
|
|
- title="提现中金额"
|
|
|
+ title="提现中金额(待审核)"
|
|
|
value-style="font-size:30px"
|
|
|
class="mr-10"
|
|
|
:precision="2"
|
|
|
@@ -47,6 +47,58 @@
|
|
|
class="mr-10"
|
|
|
:precision="2"
|
|
|
/>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center mb-4">
|
|
|
+ <el-statistic
|
|
|
+ :value="statistics.withdrawSuccessMoneyWx"
|
|
|
+ title="微信已提现金额"
|
|
|
+ value-style="font-size:30px"
|
|
|
+ class="mr-10"
|
|
|
+ :precision="2"
|
|
|
+ />
|
|
|
+ <el-statistic
|
|
|
+ :value="statistics.withdrawSuccessMoneyZfb"
|
|
|
+ title="支付宝已提现金额"
|
|
|
+ value-style="font-size:30px"
|
|
|
+ class="mr-10"
|
|
|
+ :precision="2"
|
|
|
+ />
|
|
|
+ <el-statistic
|
|
|
+ :value="statistics.inWithdrawMoneyWx"
|
|
|
+ title="微信提现中金额(未冻结)"
|
|
|
+ value-style="font-size:30px"
|
|
|
+ class="mr-10"
|
|
|
+ :precision="2"
|
|
|
+ />
|
|
|
+ <el-statistic
|
|
|
+ :value="statistics.inWithdrawFreezeMoneyWx"
|
|
|
+ title="微信提现中金额(已冻结)"
|
|
|
+ value-style="font-size:30px"
|
|
|
+ class="mr-10"
|
|
|
+ :precision="2"
|
|
|
+ />
|
|
|
+ <el-statistic
|
|
|
+ :value="statistics.withdrawCountWx"
|
|
|
+ title="微信提现笔数"
|
|
|
+ value-style="font-size:30px"
|
|
|
+ class="mr-10"
|
|
|
+ :precision="0"
|
|
|
+ />
|
|
|
+ <el-statistic
|
|
|
+ :value="statistics.inWithdrawMoneyZfb"
|
|
|
+ title="支付宝提现中金额"
|
|
|
+ value-style="font-size:30px"
|
|
|
+ class="mr-10"
|
|
|
+ :precision="2"
|
|
|
+ />
|
|
|
+ <el-statistic
|
|
|
+ :value="statistics.withdrawCountZfb"
|
|
|
+ title="支付宝提现笔数"
|
|
|
+ value-style="font-size:30px"
|
|
|
+ class="mr-10"
|
|
|
+ :precision="0"
|
|
|
+ />
|
|
|
</div>
|
|
|
|
|
|
<div class="flex items-center mb-6">
|
|
|
@@ -133,7 +185,14 @@
|
|
|
auditWithdrawMoney: 0,
|
|
|
withdrawSuccessMoney: 0,
|
|
|
averageWithdrawDuration: 0,
|
|
|
- noWithdrawMoney: 0
|
|
|
+ noWithdrawMoney: 0,
|
|
|
+ withdrawSuccessMoneyWx: 0,
|
|
|
+ withdrawSuccessMoneyZfb: 0,
|
|
|
+ inWithdrawMoneyWx: 0,
|
|
|
+ inWithdrawFreezeMoneyWx: 0,
|
|
|
+ withdrawCountWx: 0,
|
|
|
+ inWithdrawMoneyZfb: 0,
|
|
|
+ withdrawCountZfb: 0
|
|
|
});
|
|
|
|
|
|
// 获取统计数据
|