This commit is contained in:
Jonathan Chevalier
2022-10-17 17:45:39 +02:00
parent bc938fa1a4
commit e934f93f33
4 changed files with 28 additions and 3 deletions

View File

@@ -5,6 +5,7 @@
<div class="card">
<div class="card-header fw-bold"><img :alt="product.name" :src="product.media_list[0].filename" class="me-2" height="50"/> {{ product.name }}</div>
<div class="card-body">
<div class="fw-bold mb-2 text-primary"><i class="fa-solid fa-calendar-days"></i> {{store.msgDelivery[i]}}</div>
<div v-html="(store.withPrescription ? product.description1 : product.description2)"></div>
<button class="btn btn-primary" @click="goNexStep(product.id)">{{ formatPrice(store.withPrescription ? product.price : product.price2) }} TTC</button>
</div>