From 634f5be1373d3ed42a84f75cef000f9af6306182 Mon Sep 17 00:00:00 2001
From: qiezi <15576055375@163.com>
Date: Wed, 23 Apr 2025 16:56:28 +0800
Subject: [PATCH] 2025-04-23
---
.../modules/quote/detail/primary/quoteDetailCost.vue | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/views/modules/quote/detail/primary/quoteDetailCost.vue b/src/views/modules/quote/detail/primary/quoteDetailCost.vue
index b77ce74..94f2b2b 100644
--- a/src/views/modules/quote/detail/primary/quoteDetailCost.vue
+++ b/src/views/modules/quote/detail/primary/quoteDetailCost.vue
@@ -408,6 +408,12 @@ export default {
return this.selection.split(',')
}
},
+ unitPrice(){
+ if (this.quoteDetail.exchangeRate2 === 0){
+ return 0
+ }
+ return this.quoteDetail.unitPrice/this.quoteDetail.exchangeRate2
+ }
},
mounted() {
if (this.quoteDetail.calculatedItems){
@@ -598,7 +604,7 @@ export default {
-
+
@@ -624,7 +630,9 @@ export default {
-
+
+
+