diff --git a/src/layouts/schedule-page/schedule-page.vue b/src/layouts/schedule-page/schedule-page.vue new file mode 100644 index 00000000..e54d28ce --- /dev/null +++ b/src/layouts/schedule-page/schedule-page.vue @@ -0,0 +1,81 @@ + + + diff --git a/src/router/router-constants/issPage-values.js b/src/router/router-constants/issPage-values.js index b660f98f..0b6f73c6 100644 --- a/src/router/router-constants/issPage-values.js +++ b/src/router/router-constants/issPage-values.js @@ -19,6 +19,7 @@ export const issPageValues = { COVERAGE_STATEMENT: "coverage-statement", PROVIDER_PREFERENCE: "provider-preference", SERVICE_LOCATION: "service-location", + SCHEDULE_PAGE: "schedule-page", REVEAL: "reveal", ESTIMATE: "estimate", ADDRESS_VEHICLES: "address-vehicles", diff --git a/src/router/router-constants/routing-table.js b/src/router/router-constants/routing-table.js index ef72bec4..57b173a3 100644 --- a/src/router/router-constants/routing-table.js +++ b/src/router/router-constants/routing-table.js @@ -450,6 +450,16 @@ const routingTable = function(store) { ], }, + { + issPageValue: issPageValues.SCHEDULE_PAGE, + maps: [ + { + scenario: navigationScenarios.CLICKED_BACK, + destinationIssPageValue: issPageValues.SERVICE_LOCATION, + }, + + ], + }, ]; };