Bladeren bron

文案修改 加商品列表加销售统计

1
mo 3 jaren geleden
bovenliggende
commit
9e5728bf0a
2 gewijzigde bestanden met toevoegingen van 13 en 5 verwijderingen
  1. 12 4
      src/views/liveClassManager/modals/sellShopList.vue
  2. 1 1
      src/views/liveClassManager/newLiveClass.vue

+ 12 - 4
src/views/liveClassManager/modals/sellShopList.vue

@@ -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
       },
     };
   },

+ 1 - 1
src/views/liveClassManager/newLiveClass.vue

@@ -166,7 +166,7 @@
         <el-row class="row">
           <el-form-item
             class="mline"
-            label="推广类型"
+            label="观看权限"
             prop="popularizeType"
             label-width="120px"
             :rules="[{ required: true, message: '请选择推广类型' }]"