lex-xin 5 年之前
父節點
當前提交
94c06b94d2
共有 3 個文件被更改,包括 8 次插入1 次删除
  1. 0 0
      dist/index.html
  2. 0 0
      dist/static/js/app.06bd4d2e.js
  3. 8 1
      src/views/orderAccount/index.vue

文件差異過大導致無法顯示
+ 0 - 0
dist/index.html


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.06bd4d2e.js


+ 8 - 1
src/views/orderAccount/index.vue

@@ -48,6 +48,7 @@
             <span style="padding-right: 12px;">商品:{{ amountAll.goodsFeeAmount }}元</span>
             <span style="padding-right: 12px;">教辅:{{ amountAll.sdFeeAmount }}元</span>
             <span style="padding-right: 12px;">手续费:{{ amountAll.commissionAmount }}元</span>
+            <span style="padding-right: 12px;">实际到账:{{ (amountAll.amount - amountAll.commissionAmount).toFixed(2) }}元</span>
         </p>
     </el-form>
     <div class="tableWrap">
@@ -163,7 +164,13 @@ export default {
         branchId: '',
         classId: '',
         account: this.$route.query.account, // 财务唯一标识
-        amountAll: {}, // 金额集合
+        amountAll: {
+            amoun: 0,
+            tuiFeeAmount: 0,
+            goodsFeeAmount: 0,
+            sdFeeAmount: 0,
+            commissionAmount: 0,
+        }, // 金额集合
     }
   },
   computed: {

部分文件因文件數量過多而無法顯示