From b5e24c814688664da74ae7aea9b6dea7e93b0725 Mon Sep 17 00:00:00 2001 From: Michaela Brydon Date: Thu, 29 Feb 2024 14:49:53 -0500 Subject: [PATCH] Separating deductible and base pay --- .../cart-dropdown/cart-dropdown.vue | 7 ++-- src/layouts/payment-method/payment-method.vue | 32 ++++++++----------- 2 files changed, 18 insertions(+), 21 deletions(-) diff --git a/src/iss-components/cart-dropdown/cart-dropdown.vue b/src/iss-components/cart-dropdown/cart-dropdown.vue index 2dd9210c..1d52f580 100644 --- a/src/iss-components/cart-dropdown/cart-dropdown.vue +++ b/src/iss-components/cart-dropdown/cart-dropdown.vue @@ -24,7 +24,7 @@ class="d-flex justify-content-between align-items-center"> {{ deductibleOrBasePriceLabel }} + class="label">{{ deductibleLabel }} {{ getDisplayed(deductible) }}
{{ deductibleOrBasePriceLabel }} + class="label">{{ BasePriceLabel }} {{ getDisplayed(baseServicePrice) }}
@@ -53,7 +53,8 @@ export default { props: { showAsPaid: Boolean, amountDueLabel: String, - deductibleOrBasePriceLabel: String + deductibleLabel: String, + basePriceLabel: String }, data() { return { diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 1cafe4ef..a57577f1 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -22,7 +22,8 @@ + :deductibleLabel="deductibleLabel" + :basePriceLabel="basePriceLabel" />
Pia Alert Placeholder