From 5985afbb3372881cf867ed32eed5bec8434e8182 Mon Sep 17 00:00:00 2001 From: dminyi <1301963064@qq.com> Date: Tue, 13 Aug 2024 09:32:51 +0800 Subject: [PATCH] 来访登记 --- gz-customerSystem/src/router/router.js | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/gz-customerSystem/src/router/router.js b/gz-customerSystem/src/router/router.js index c855afd..b2223da 100644 --- a/gz-customerSystem/src/router/router.js +++ b/gz-customerSystem/src/router/router.js @@ -2,7 +2,7 @@ * @Company: hugeInfo * @Author: ldh * @Date: 2022-03-28 11:22:41 - * @LastEditTime: 2023-12-25 16:24:22 + * @LastEditTime: 2024-08-09 15:56:47 * @LastEditors: dminyi 1301963064@qq.com * @Version: 1.0.0 * @Description: 路由 @@ -134,6 +134,9 @@ // 数据分析 import DataSearch from "../views/statistic/dataSearch"; +//来访登记 +import Visit from "../views/register/visit" + import Test from "../views/test"; const Routers = () => { @@ -204,6 +207,8 @@ <Route path="judicialDivision/judicialDivisionDetail" element={<JudicialDivisionDetail />} /> <Route path="myConfirmation" element={<MyConfirmation />} /> <Route path="judicialOverview" element={<JudicialOverview />} /> + {/* 来访登记*/} + <Route path="visit" element={<Visit />} /> {/* 工作流模块 */} <Route path="workflowTemplate" element={<WorkflowTemplate />} /> <Route path="workflowTemplate/workflowTemplateEdit" element={<WorkflowTemplateEdit />} /> @@ -216,6 +221,7 @@ <Route path="myAdjust/mediationWindowSuccess" element={<MediationWindowSuccess />} /> </Route> + <Route path="/operation" element={<Navigate to="/operation/personnel" />} /> {/* 基础信息管理 */} <Route path="/operation" element={<Layout headerUserChange={headerUserChange} />}> -- Gitblit v1.8.0