|
@@ -346,7 +346,8 @@ export default {
|
|
|
totalPrice.value =
|
|
|
adultCount.value * adultUnitPrice.value +
|
|
|
childCount.value * childUnitPrice.value +
|
|
|
- infantCount.value * infantUnitPrice.value;
|
|
|
+ infantCount.value * infantUnitPrice.value +
|
|
|
+ (adultCount.value % 2 == 0 ? 0 : 1*singleDiffPrice.value);
|
|
|
} else {
|
|
|
totalPrice.value = generalPrice.value * buyCount.value;
|
|
|
}
|