diff --git a/src/layouts/order-confirmation/order-confirmation.vue b/src/layouts/order-confirmation/order-confirmation.vue new file mode 100644 index 00000000..c1685696 --- /dev/null +++ b/src/layouts/order-confirmation/order-confirmation.vue @@ -0,0 +1,77 @@ + + + + + + + Placeholder for order confirmation page + + + + + + + + \ No newline at end of file diff --git a/src/router/router-constants/issPage-values.js b/src/router/router-constants/issPage-values.js index 70da2a0e..6f8877bf 100644 --- a/src/router/router-constants/issPage-values.js +++ b/src/router/router-constants/issPage-values.js @@ -10,6 +10,7 @@ export const issPageValues = { COVERAGE_STATEMENT: 'coverage-statement', LICENSE_PLATE_LOOKUP: 'license-plate-lookup', MOLDING_QUESTIONS: 'molding-questions', + ORDER_CONFIRMATION: 'order-confirmation', PAYMENT_PAGE: 'payment-page', PART_QUESTIONS: 'part-questions', POLICY_HOLDER_DETAILS: 'policy-holder-details', diff --git a/src/router/router-constants/routing-table.js b/src/router/router-constants/routing-table.js index 1376ed00..fe335080 100644 --- a/src/router/router-constants/routing-table.js +++ b/src/router/router-constants/routing-table.js @@ -516,7 +516,7 @@ const routingTable = function(store) { }, { scenario: navigationScenarios.CLICKED_FORWARD, - destinationIssPageValue: issPageValues.WELCOME_PAGE + destinationIssPageValue: issPageValues.ORDER_CONFIRMATION, } ] }, @@ -545,7 +545,18 @@ const routingTable = function(store) { destinationIssPageValue: issPageValues.TPA_CONFIRMATION, }, ] - } + }, + { + issPageValue: issPageValues.ORDER_CONFIRMATION, + maps: [ + + { + scenario: navigationScenarios.CLICKED_FORWARD, + destinationIssPageValue: issPageValues.WELCOME_PAGE + }, + + ], + }, ]; };
Placeholder for order confirmation page