From 17ecf1ebec40ff374b13053b1757864fba8ff043 Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Wed, 30 Aug 2023 15:54:37 -0400 Subject: [PATCH] commit before stash --- .../service-location/service-location.vue | 108 +++++++++--------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index 252741c1..b1fd6449 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -5,52 +5,45 @@ @submit="onSubmit" @invalidSubmit="onInvalidSubmit">
-
- - -
-
-
-
-
- - - -
- -
-
-
-
-
-
+ + +
+ + + + +
@@ -164,8 +157,18 @@ export default { } return this.isGlassServiceableMobile; }, + isServiceableInshop() { + if (this.isRecalibrationServiceableInshop !== null) { + return this.isGlassServiceableInshop && this.isRecalibrationServiceableInshop; + } + + return this.isGlassServiceableInshop; + }, displayMilitaryZipAlert() { return this.zipContainsMilitaryBase && this.isServiceableMobile; + }, + displayServiceableMobileOnly() { + return this.isServiceableMobile && !this.isServiceableInshop; } }, methods: { @@ -214,18 +217,16 @@ export default {