|
@@ -29,7 +29,7 @@
|
|
</div>
|
|
</div>
|
|
<!-- 合计 -->
|
|
<!-- 合计 -->
|
|
<a-alert type="info" showIcon style="margin-bottom:15px">
|
|
<a-alert type="info" showIcon style="margin-bottom:15px">
|
|
- <div class="ftext" slot="message">共<span>{{ orderTotal }}</span>单,实收<span>¥{{ amount || 0 }}</span>元</div>
|
|
|
|
|
|
+ <div class="ftext" slot="message">共<span>{{ orderTotal || 0 }}</span>单,实收<span>¥{{ amountTotal || 0 }}</span>元</div>
|
|
</a-alert>
|
|
</a-alert>
|
|
<!-- 列表 -->
|
|
<!-- 列表 -->
|
|
<div>
|
|
<div>
|
|
@@ -209,7 +209,7 @@ export default {
|
|
settlementRecordsListTotal(params).then(res => {
|
|
settlementRecordsListTotal(params).then(res => {
|
|
if (res.status == 200) {
|
|
if (res.status == 200) {
|
|
if (res.data) {
|
|
if (res.data) {
|
|
- this.orderTotal = res.data.orderNum || 0
|
|
|
|
|
|
+ this.orderTotal = res.data.cnt || 0
|
|
this.amountTotal = res.data.amount || 0
|
|
this.amountTotal = res.data.amount || 0
|
|
} else {
|
|
} else {
|
|
this.orderTotal = 0
|
|
this.orderTotal = 0
|