Commit 7892aaf4 authored by caoxu's avatar caoxu

Remove: 去掉Add-ons和Number of travelers板块

parent 7cac3215
......@@ -57,6 +57,35 @@
</div>
<!-- Add-ons section -->
<div class="popup-section">
<!-- Add-ons wrapper with background -->
<div class="addons-wrapper">
<div
class="addon-item"
v-for="(addon, index) in addons"
:key="index"
>
<div class="addon-header flex-row">
<div class="addon-name">{{ addon.name }}</div>
<div class="quantity-control">
<button
class="quantity-btn minus"
@click="updateAddonQuantity(index, -1)"
:disabled="addon.quantity <= 0"
></button>
<span class="quantity-value">{{ addon.quantity }}</span>
<button
class="quantity-btn plus"
@click="updateAddonQuantity(index, 1)"
>+</button>
</div>
</div>
<div class="addon-price">{{ addon.price }}</div>
</div>
</div>
</div>
<!-- Discount code section -->
<div class="popup-section">
<!-- Discount wrapper with border, including title -->
<div class="discount-wrapper">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment