diff --git a/src/iss-components/cart-dropdown/cart-dropdown.vue b/src/iss-components/cart-dropdown/cart-dropdown.vue index 92fbc3c8..dce39e7d 100644 --- a/src/iss-components/cart-dropdown/cart-dropdown.vue +++ b/src/iss-components/cart-dropdown/cart-dropdown.vue @@ -38,6 +38,14 @@ {{ getDisplayed(baseServicePrice) }} + @@ -56,7 +64,8 @@ export default { showAsPaid: Boolean, amountDueLabel: String, deductibleLabel: String, - basePriceLabel: String + basePriceLabel: String, + serviceLabel: String }, data() { const { currentDeductible } = useMainStore().order; @@ -94,6 +103,10 @@ export default { return this.showAsPaid ? 0 : this.subTotal + this.salesTax; + }, + // TODO + serviceValue() { + return 25; } }, methods: { @@ -104,7 +117,8 @@ export default { return this.isUnverified && this.showDeductibleLineItem ? VERIFYING_COVERAGE : formatAmountInDollars(amount); - } + }, + formatAmountInDollars } }; diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 6f8a6010..8d3b9481 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -23,7 +23,8 @@ :showAsPaid="false" :amountDueLabel="amountDueText" :deductibleLabel="deductibleLabel" - :basePriceLabel="basePriceLabel" /> + :basePriceLabel="basePriceLabel" + :serviceLabel="serviceLabel" />