Skip to content

Commit

Permalink
feat(next/web): allow customer service download exported tickets
Browse files Browse the repository at this point in the history
  • Loading branch information
sdjdd committed Apr 1, 2024
1 parent afc659b commit adf4d0a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions next/web/src/App/Admin/Settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ const SettingRoutes = () => (
<Route path="/users">
<Route path="new" element={<NewUser />} />
</Route>
<Route path="/export-ticket">
<Route path="tasks" element={<ExportTicketTask />} />
</Route>
</Routes>
);

Expand Down Expand Up @@ -198,6 +201,7 @@ const routeGroups: MenuItem[] = [
{
name: '工单',
key: 'ticket',
adminOnly: false,
children: [
{
name: '分类',
Expand Down Expand Up @@ -238,6 +242,7 @@ const routeGroups: MenuItem[] = [
{
name: '导出记录',
path: 'export-ticket/tasks',
adminOnly: false,
},
],
},
Expand Down

0 comments on commit adf4d0a

Please sign in to comment.