Download zip

This commit is contained in:
ivan-sim
2024-04-16 16:00:23 +07:00
parent de59a1e69e
commit 9710ce9977
8 changed files with 1191 additions and 55 deletions

View File

@@ -418,6 +418,10 @@ export default function Router() {
path: 'report/appointments/:id/edit',
element: <AppointmentCreate />,
},
{
path: 'report/files-provider',
element: <FilesProvider />,
},
{
path: 'report/live-chat',
element: <Livechat />,
@@ -630,7 +634,7 @@ const InpatientMonitoring = Loadable(lazy(() => import('../pages/CaseManagement/
/**
* Customer Service
*/
// Request
// Request
const RequestLog = Loadable(lazy(() => import('../pages/CustomerService/Request/Index')))
const RequestLogDetail = Loadable(lazy(() => import('../pages/CustomerService/Request/Detail')))
// Final LOG
@@ -662,6 +666,8 @@ const Appointment = Loadable(lazy(() => import('../pages/Report/Appointments/Ind
const AppointmentCreate = Loadable(lazy(() => import('../pages/Report/Appointments/Create')));
const AppointmentShow = Loadable(lazy(() => import('../pages/Report/Appointments/Show')));
const FilesProvider = Loadable(lazy(() => import('../pages/Report/FilesProvider/Index')));
const Livechat = Loadable(lazy(() => import('../pages/Report/Livechat/Index')));
const LivechatCreate = Loadable(lazy(() => import('../pages/Report/Livechat/Create')));
const LivechatShow = Loadable(lazy(() => import('../pages/Report/Livechat/Show')));