|
|
@@ -0,0 +1,79 @@
|
|
|
+export default [
|
|
|
+ {
|
|
|
+ path: "/associado/perfil",
|
|
|
+ name: "MeuPerfilPage",
|
|
|
+ component: () => import("pages/associado/profile/ProfilePage.vue"),
|
|
|
+ meta: {
|
|
|
+ title: { value: "ui.navigation.meu_perfil", translate: true },
|
|
|
+ description: { value: "page.associado.profile.description", translate: true },
|
|
|
+ requireAuth: true,
|
|
|
+ breadcrumbs: [{ name: "MeuPerfilPage", title: "ui.navigation.meu_perfil", translate: true }],
|
|
|
+ },
|
|
|
+ },
|
|
|
+ // {
|
|
|
+ // path: "/associado/carteirinha",
|
|
|
+ // name: "CarteirinhaPage",
|
|
|
+ // component: () => import("pages/associado/carteirinha/CarteirinhaPage.vue"),
|
|
|
+ // meta: {
|
|
|
+ // title: { value: "ui.navigation.carteirinha", translate: true },
|
|
|
+ // description: { value: "page.associado.carteirinha.description", translate: true },
|
|
|
+ // requireAuth: true,
|
|
|
+ // breadcrumbs: [{ name: "CarteirinhaPage", title: "ui.navigation.carteirinha", translate: true }],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ {
|
|
|
+ path: "/associado/convenios",
|
|
|
+ name: "ConveniosPage",
|
|
|
+ component: () => import("pages/parceiros-convenios/ParceirosConveniosPage.vue"),
|
|
|
+ meta: {
|
|
|
+ title: { value: "ui.navigation.convenios", translate: true },
|
|
|
+ description: { value: "page.associado.convenios.description", translate: true },
|
|
|
+ requireAuth: true,
|
|
|
+ breadcrumbs: [{ name: "ConveniosPage", title: "ui.navigation.convenios", translate: true }],
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/associado/loja",
|
|
|
+ name: "AssociadoLojaPage",
|
|
|
+ component: () => import("pages/associado/loja/LojaPage.vue"),
|
|
|
+ meta: {
|
|
|
+ title: { value: "ui.navigation.loja", translate: true },
|
|
|
+ description: { value: "page.associado.loja.description", translate: true },
|
|
|
+ requireAuth: true,
|
|
|
+ breadcrumbs: [{ name: "AssociadoLojaPage", title: "ui.navigation.loja", translate: true }],
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/associado/interesses",
|
|
|
+ name: "AssociadoInteressesPage",
|
|
|
+ component: () => import("pages/associado/interesses/InteressesPage.vue"),
|
|
|
+ meta: {
|
|
|
+ title: { value: "ui.navigation.meus_interesses", translate: true },
|
|
|
+ description: { value: "page.associado.interesses.description", translate: true },
|
|
|
+ requireAuth: true,
|
|
|
+ breadcrumbs: [{ name: "AssociadoInteressesPage", title: "ui.navigation.meus_interesses", translate: true }],
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/associado/agendamentos",
|
|
|
+ name: "AssociadoAgendamentosPage",
|
|
|
+ component: () => import("pages/associado/agendamentos/AgendamentosPage.vue"),
|
|
|
+ meta: {
|
|
|
+ title: { value: "ui.navigation.meus_agendamentos", translate: true },
|
|
|
+ description: { value: "page.associado.agendamentos.description", translate: true },
|
|
|
+ requireAuth: true,
|
|
|
+ breadcrumbs: [{ name: "AssociadoAgendamentosPage", title: "ui.navigation.meus_agendamentos", translate: true }],
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/associado/notificacoes",
|
|
|
+ name: "NotificacoesPage",
|
|
|
+ component: () => import("pages/associado/notificacoes/NotificacoesPage.vue"),
|
|
|
+ meta: {
|
|
|
+ title: { value: "ui.navigation.notifications", translate: true },
|
|
|
+ description: { value: "page.associado.notificacoes.description", translate: true },
|
|
|
+ requireAuth: true,
|
|
|
+ breadcrumbs: [{ name: "NotificacoesPage", title: "ui.navigation.notifications", translate: true }],
|
|
|
+ },
|
|
|
+ },
|
|
|
+];
|