TIU-based document view

This commit is contained in:
2023-05-10 21:55:15 -04:00
parent 71db3a6186
commit 0fe07e59af
4 changed files with 211 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
import RoutePatientVisits from './RoutePatientVisits.vue';
import RoutePatientOrders from './RoutePatientOrders.vue';
import RoutePatientReports from './RoutePatientReports.vue';
import RoutePatientDocuments from './RoutePatientDocuments.vue';
import RoutePlanner from './RoutePlanner.vue';
import RouteRecall from './RouteRecall.vue';
import RouteInbox from './RouteInbox.vue';
@@ -70,6 +71,8 @@
{ path: 'reports/pathology', component: RoutePatientReports, props: { report_name: 'Pathology' } },
{ path: 'reports/radiology', component: RoutePatientReports, props: { report_name: 'Radiology' } },
{ path: 'reports/notes', component: RoutePatientReports, props: { report_name: 'Notes' } },
{ path: 'document', component: RoutePatientDocuments },
{ path: 'document/:tiu_da', component: RoutePatientDocuments },
] },
{ path: '/planner', component: RoutePlanner },
{ path: '/recall', component: RouteRecall },