diff --git a/dist.zip b/dist.zip
index 4031c6f..548f874 100644
Binary files a/dist.zip and b/dist.zip differ
diff --git a/src/pages/eashier/reatment/reatment.vue b/src/pages/eashier/reatment/reatment.vue
index 2e74b06..b199b64 100644
--- a/src/pages/eashier/reatment/reatment.vue
+++ b/src/pages/eashier/reatment/reatment.vue
@@ -173,11 +173,11 @@
changeDeal(val,scope.$index)" @blur="(val)=>changeDeal(val,scope.$index)" ref="priceinput">
-
+
-
+
+
+
+ {{scope.row.debtMoney?scope.row.debtMoney:0}}
+
@@ -651,7 +656,7 @@ export default {
amountType(){
return function(type){
// 1成交额 2卡付 3现付 4欠款
- let num = type==1?eval(this.list.map(item=>{return item.amount?item.amount*1:0}).join("+")):(type==2?eval(this.list.map(item=>{return this.selectTabAmount(item.rechargeAccountList,2)?this.selectTabAmount(item.rechargeAccountList,2):0}).join("+")):(type==3?eval(this.payLists.map(item=>{return item.payMoney*1}).join("+")):eval(this.list.map(item=>{return item.debtAmount?item.debtAmount*1:0}).join("+"))))
+ let num = type==1?eval(this.list.map(item=>{return item.amount?item.amount*1:0}).join("+")):(type==2?eval(this.list.map(item=>{return this.selectTabAmount(item.rechargeAccountList,2)?this.selectTabAmount(item.rechargeAccountList,2):0}).join("+")):(type==3?eval(this.payLists.map(item=>{return item.payMoney*1}).join("+")):eval(this.list.map(item=>{return item.debtMoney?item.debtMoney*1:0}).join("+"))))
return num?num.toFixed(2)*1:0
}
},