Hartford specific customerAccount example

This commit is contained in:
2023-09-27 13:30:00 -05:00
parent 0b86bbb899
commit da1faf1067
3 changed files with 127 additions and 72 deletions

View File

@@ -43,9 +43,20 @@ const routes = [
{
path: "/customerAccount/:accountNumber",
name: "customerAccount",
component: CustomerAccountView,
components: { default: CustomerAccountView, SideBarView: SideBarView },
props: { default: true, SideBarView: true },
components: { default: CustomerAccountView },
props: {
default: (route) => ({
accountNumber: route.params.accountNumber,
channel: route.query.channel,
type: route.query.type,
queue: route.query.queue,
direction: route.query.direction,
startTime: route.query.startTime,
dnis: route.query.dnis,
ani: route.query.ani,
transferSummary: route.query.transferSummary
}),
},
},
{
path: "/debug",