feat(freight): shop freight templates, server-side checkout fees, company dictionary (add-freight-templates)

This commit is contained in:
Chengdong Zhang
2026-09-24 15:03:51 +08:00
parent 5b426486ac
commit 473d19d089
44 changed files with 2409 additions and 67 deletions
+7
View File
@@ -180,6 +180,13 @@ onMounted(() => {
</tr>
</tbody>
</VTable>
<p class="text-muted mt-4 text-right text-[13px]">
{{ t("checkout.shippingFee") }}:
<span v-if="order.shipping_fee_minor > 0">
<PriceText :amount-minor="order.shipping_fee_minor" :currency="order.currency" />
</span>
<span v-else class="text-success">{{ t("checkout.freeShipping") }}</span>
</p>
<p v-if="order.discount_minor > 0" class="text-primary mt-4 text-right text-[13px]">
{{ t("checkout.couponDiscount") }}:
<PriceText :amount-minor="order.discount_minor" :currency="order.currency" />