|
@@ -10,11 +10,17 @@
|
|
|
<div>
|
|
|
<descriptions :column="2">
|
|
|
<descriptions-item label="购买人数:">{{
|
|
|
- statInfo.buyNum | moneyFormat
|
|
|
- }}</descriptions-item>
|
|
|
+ statInfo.buyNum
|
|
|
+ }}人</descriptions-item>
|
|
|
+ <descriptions-item label="现金总额:">{{
|
|
|
+ statInfo.actualAmount | moneyFormat
|
|
|
+ }}元</descriptions-item>
|
|
|
+ <descriptions-item label="余额总额:">{{
|
|
|
+ statInfo.balance | moneyFormat
|
|
|
+ }}元</descriptions-item>
|
|
|
<descriptions-item label="销售总额:">{{
|
|
|
- statInfo.totalAmount
|
|
|
- }}</descriptions-item>
|
|
|
+ statInfo.totalAmount | moneyFormat
|
|
|
+ }}元</descriptions-item>
|
|
|
</descriptions>
|
|
|
<el-alert
|
|
|
title="直播商品"
|
|
@@ -136,6 +142,8 @@ export default {
|
|
|
statInfo: {
|
|
|
totalAmount: 0,
|
|
|
buyNum: 0,
|
|
|
+ balance:0,
|
|
|
+ actualPrice:0
|
|
|
},
|
|
|
};
|
|
|
},
|