Added more fields.

This commit is contained in:
Jeremy-Z 2026-04-10 14:47:14 -04:00
parent 4ddd961d18
commit 7125e1fa97

View file

@ -129,11 +129,6 @@ export default {
},
pushValueToGA() {
const gaSiteType = {
['siteType']: useMainStore().issConfig.siteType
};
this.pushGenericObjectToGA(gaSiteType);
const gaServiceType = {
['service_type']: useMainStore().order?.serviceLocation?.appointmentType?.toLowerCase()
};
@ -155,6 +150,10 @@ export default {
// Begin assembling payload for data layer
const payload = {};
payload.appName = "ISS";
payload.siteType = store.issConfig.siteType;
payload.pageName = this.getPageNameByQueryString();
// Service Zip
if (
order.serviceLocation.appointmentType === AppointmentTypeStrings.MOBILE &&