|
@@ -74,8 +74,8 @@
|
|
|
<!-- 合计 -->
|
|
|
<div class="total">
|
|
|
<a-icon type="info-circle" class="iconImg" />
|
|
|
- <strong>总计:</strong><span v-model="orderTotal">{{ orderTotal || 0 }} 单</span>
|
|
|
- <strong style="margin-left: 15px;">收款金额:</strong><span v-model="payedAmount">{{ payedAmount || 0 }} 元</span>
|
|
|
+ <strong>总计:</strong><span>{{ orderTotal || 0 }} 单</span>
|
|
|
+ <strong style="margin-left: 15px;">收款金额:</strong><span>{{ totalAmounts || 0 }} 元</span>
|
|
|
</div>
|
|
|
<!-- 列表 -->
|
|
|
<s-table
|
|
@@ -216,7 +216,7 @@ export default {
|
|
|
if (res.status == 200) {
|
|
|
if (res.data) {
|
|
|
this.orderTotal = res.data.cnt || 0
|
|
|
- this.totalAmounts = res.data.totalAmounts || 0
|
|
|
+ this.totalAmounts = res.data.payedAmount || 0
|
|
|
} else {
|
|
|
this.orderTotal = 0
|
|
|
this.totalAmounts = 0
|