modify the route

pull/141/MERGE^2
hyh123a 2022-04-16 19:01:26 +08:00
parent 097aae2322
commit 1ea02fcf22
2 changed files with 2 additions and 2 deletions

View File

@ -455,8 +455,8 @@ const MyEMSRoutes = () => (
<Route path="/notification" exact component={Notification} />
{/* Ticket */}
<Route path="/ticket/agent" exact component={TicketAgent} />
<Route path="/ticket/application" exact component={TicketApplication} />
<Route path="/ticket/agent" exact component={TicketAgent} />
<Route path="/ticket/list" exact component={TicketList} />
<Route path="/ticket/intervention" exact component={TicketIntervention} />

View File

@ -493,8 +493,8 @@ export const workflowRoutes = {
to: '/ticket',
icon: 'chart-pie',
children: [
{ to: '/ticket/agent', name: 'My Agent' },
{ to: '/ticket/application', name: 'My Application' },
{ to: '/ticket/agent', name: 'My Agent' },
{ to: '/ticket/list', name: 'Ticket List' },
{ to: '/ticket/intervention', name: 'Ticket Intervention' }
]