Added more fields.
This commit is contained in:
parent
4ddd961d18
commit
7125e1fa97
1 changed files with 4 additions and 5 deletions
|
|
@ -129,11 +129,6 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
pushValueToGA() {
|
pushValueToGA() {
|
||||||
const gaSiteType = {
|
|
||||||
['siteType']: useMainStore().issConfig.siteType
|
|
||||||
};
|
|
||||||
this.pushGenericObjectToGA(gaSiteType);
|
|
||||||
|
|
||||||
const gaServiceType = {
|
const gaServiceType = {
|
||||||
['service_type']: useMainStore().order?.serviceLocation?.appointmentType?.toLowerCase()
|
['service_type']: useMainStore().order?.serviceLocation?.appointmentType?.toLowerCase()
|
||||||
};
|
};
|
||||||
|
|
@ -155,6 +150,10 @@ export default {
|
||||||
// Begin assembling payload for data layer
|
// Begin assembling payload for data layer
|
||||||
const payload = {};
|
const payload = {};
|
||||||
|
|
||||||
|
payload.appName = "ISS";
|
||||||
|
payload.siteType = store.issConfig.siteType;
|
||||||
|
payload.pageName = this.getPageNameByQueryString();
|
||||||
|
|
||||||
// Service Zip
|
// Service Zip
|
||||||
if (
|
if (
|
||||||
order.serviceLocation.appointmentType === AppointmentTypeStrings.MOBILE &&
|
order.serviceLocation.appointmentType === AppointmentTypeStrings.MOBILE &&
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue