|
@@ -1,20 +1,47 @@
|
|
|
<template>
|
|
|
<div class="">
|
|
|
- <div
|
|
|
- class="m-10 bg-w p-20 br-10 f-sa-s">
|
|
|
+ <div class="m-10 bg-w p-20 br-10">
|
|
|
+ <div class="f-sa-s">
|
|
|
<div class="f-fs-c f-col">
|
|
|
<div style="font-size: 16px;">总下载量</div>
|
|
|
- <div class="mt-4" style="font-weight: bold; font-size: 18px;">{{statistics.countDownload}}</div>
|
|
|
+ <div class="mt-4" style="font-weight: bold; font-size: 18px;">
|
|
|
+ {{ statistics.all }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="f-fs-c f-col">
|
|
|
+ <div style="font-size: 16px;">月下载量</div>
|
|
|
+ <div class="mt-4" style="font-weight: bold; font-size: 18px;">
|
|
|
+ {{ statistics.month }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="f-fs-c f-col">
|
|
|
+ <div style="font-size: 16px;">周下载量</div>
|
|
|
+ <div class="mt-4" style="font-weight: bold; font-size: 18px;">
|
|
|
+ {{ statistics.week }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="f-sa-s mt-20">
|
|
|
+ <div class="f-fs-c f-col">
|
|
|
<div style="font-size: 16px;">总下载金额</div>
|
|
|
- <div class="mt-4" style="font-weight: bold; font-size: 18px;">{{statistics.sumPaidPrice}}</div>
|
|
|
+ <div class="mt-4" style="font-weight: bold; font-size: 18px;">
|
|
|
+ {{ statistics.sumPaidPrice }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="f-fs-c f-col">
|
|
|
<div style="font-size: 16px;">总下载积分</div>
|
|
|
- <div class="mt-4" style="font-weight: bold; font-size: 18px;">{{statistics.sumPoints}}</div>
|
|
|
+ <div class="mt-4" style="font-weight: bold; font-size: 18px;">
|
|
|
+ {{ statistics.sumPoints }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="f-fs-c f-col">
|
|
|
+ <div style="font-size: 16px;"> </div>
|
|
|
+ <div class="mt-4" style="font-weight: bold; font-size: 18px;">
|
|
|
+
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ </div>
|
|
|
|
|
|
<toolbar @on-filter="filterData" @on-reset="filterData" />
|
|
|
|
|
@@ -31,7 +58,7 @@
|
|
|
<script>
|
|
|
import toolbar from './toolbar';
|
|
|
import mxFilterList from '@/mixins/filterList';
|
|
|
-import { getDownloadPage,getDownloadCount } from '@/api/statistics';
|
|
|
+import { getDownloadPage, getDownloadCount } from '@/api/statistics';
|
|
|
|
|
|
export default {
|
|
|
name: 'DownloadImage',
|