From cdd6551b190b981b807a3b95e9635c559ccc769d Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期一, 19 五月 2025 09:45:07 +0800
Subject: [PATCH] git ch
---
wx/pages/addition_subtraction/addition_subtraction.vue | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/wx/pages/addition_subtraction/addition_subtraction.vue b/wx/pages/addition_subtraction/addition_subtraction.vue
index 0795fed..6271aa5 100644
--- a/wx/pages/addition_subtraction/addition_subtraction.vue
+++ b/wx/pages/addition_subtraction/addition_subtraction.vue
@@ -157,7 +157,12 @@
// 鎬婚噾棰�
totalPrice() {
// return (this.cyclePrice * (this.add.length + this.del.length)).toFixed(2)
- return ((this.cyclePrice * this.add.length) - (this.cyclePrice * this.del.length)).toFixed(2)
+ var totalReductPrice = 0;
+ this.del.forEach(item =>{
+ totalReductPrice = totalReductPrice+item.fee
+ })
+ // return ((this.cyclePrice * this.add.length) - (this.cyclePrice * this.del.length)).toFixed(2)
+ return ((this.cyclePrice * this.add.length) +totalReductPrice).toFixed(2)
}
},
methods: {
@@ -193,7 +198,7 @@
memberName: item.name,
workTypeName: item.gzName,
worktypeId: item.gzId,
- fee: this.cyclePrice
+ fee: item.fee
}
})
this.$u.api.applyChangeCreate({
--
Gitblit v1.9.3