|
|
@@ -32,7 +32,7 @@
|
|
|
</div>
|
|
|
<div v-if="count" class="content">
|
|
|
<span class="content-number spBlock mb15">
|
|
|
- <count-to :start-val="0" :end-val="count.toDayAddNum || 0" :duration="2600" class="card-panel-num" />
|
|
|
+ <count-to :start-val="0" :end-val="todayRecordCount || 0" :duration="2600" class="card-panel-num" />
|
|
|
</span>
|
|
|
</div>
|
|
|
</el-card>
|
|
|
@@ -210,6 +210,7 @@ export default {
|
|
|
count: {},
|
|
|
totalRecordCount: 0,
|
|
|
successRecordCount: 0,
|
|
|
+ todayRecordCount:0,
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
|
@@ -250,6 +251,7 @@ export default {
|
|
|
this.total = response.total || 0
|
|
|
this.successRecordCount = response.successRecordCount || 0
|
|
|
this.totalRecordCount = response.totalRecordCount || 0
|
|
|
+ this.todayRecordCount = response.todayRecordCount || 0
|
|
|
})
|
|
|
.finally(() => {
|
|
|
this.loading = false
|