From e63e56a1b45bc2025147f7f91d248f93a43deb7a Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期五, 12 四月 2024 15:10:41 +0800
Subject: [PATCH] git ch
---
company/src/components/enterprise/additionSubtractionApplication.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/company/src/components/enterprise/additionSubtractionApplication.vue b/company/src/components/enterprise/additionSubtractionApplication.vue
index fe4a742..d021461 100644
--- a/company/src/components/enterprise/additionSubtractionApplication.vue
+++ b/company/src/components/enterprise/additionSubtractionApplication.vue
@@ -328,12 +328,12 @@
this.form.addDetailList.forEach(item => {
total += item.fee
})
- sums[index] = total
+ sums[index] = total.toFixed(2)
} else {
this.form.delDetailList.forEach(item => {
total += item.fee
})
- sums[index] = '-' + total
+ sums[index] = '-' + total.toFixed(2)
}
}
})
--
Gitblit v1.9.3