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 { - + + +