update create e-prescription

This commit is contained in:
2024-04-30 10:11:11 +07:00
parent 2c4fe723dc
commit 8aa67c1864
19 changed files with 2234 additions and 28 deletions

View File

@@ -511,6 +511,18 @@ export default function Router() {
path: 'custormer-service/final-log/detail/:id',
element: <FinalLogDetail />,
},
{
path: 'e-prescription/live-chat',
element: <EPrescription />,
},
{
path: 'e-prescription/live-chat/:id',
element: <EPrescriptionCreate />,
},
{
path: 'e-prescription/live-chat/:id/show',
element: <EPrescriptionShow />,
},
],
},
// {
@@ -672,6 +684,11 @@ 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')));
const EPrescription = Loadable(lazy(() => import('../pages/EPrescription/Livechat/Index')));
const EPrescriptionCreate = Loadable(lazy(() => import('../pages/EPrescription/Livechat/Create')));
const EPrescriptionShow = Loadable(lazy(() => import('../pages/EPrescription/Livechat/Show')));
const LinksehatPayment = Loadable(lazy(() => import('../pages/Report/LinksehatPayments/Index')));
const MasterDrug = Loadable(lazy(() => import('../pages/Master/Drug/Index')));