Added loader for this navigation path.
This commit is contained in:
parent
e650ac9666
commit
c338c12f1c
1 changed files with 3 additions and 0 deletions
|
|
@ -63,6 +63,7 @@ import { useMainStore } from '@/store/index.js';
|
||||||
import globalRules from '@/constants/global-rules.js';
|
import globalRules from '@/constants/global-rules.js';
|
||||||
import { formatDate, toTitleCase } from '@/helpers/text-helper.js';
|
import { formatDate, toTitleCase } from '@/helpers/text-helper.js';
|
||||||
import { saveSession } from '@/helpers/order-helper';
|
import { saveSession } from '@/helpers/order-helper';
|
||||||
|
import showIssLoadingModal from '@/helpers/loading-modal-helper';
|
||||||
|
|
||||||
const dupeCheckDateFormatter = new Intl.DateTimeFormat('en-US', { timeZone: 'UTC', month: '2-digit', day: '2-digit', year: 'numeric' });
|
const dupeCheckDateFormatter = new Intl.DateTimeFormat('en-US', { timeZone: 'UTC', month: '2-digit', day: '2-digit', year: 'numeric' });
|
||||||
|
|
||||||
|
|
@ -135,6 +136,8 @@ export default {
|
||||||
* @summary Steps to perform when forward button clicked.
|
* @summary Steps to perform when forward button clicked.
|
||||||
*/
|
*/
|
||||||
async forwardButtonAction() {
|
async forwardButtonAction() {
|
||||||
|
showIssLoadingModal(true);
|
||||||
|
|
||||||
// If user clicked foward without selecting an option or user click on "start a new claim" button.
|
// If user clicked foward without selecting an option or user click on "start a new claim" button.
|
||||||
if (this.selectedAnswer == null || this.selectedAnswer === 'NewClaim') {
|
if (this.selectedAnswer == null || this.selectedAnswer === 'NewClaim') {
|
||||||
// Call SaveSession to create referral.
|
// Call SaveSession to create referral.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue