From 37b70fe25e3b0918ed973303e6c758fc7d1c22c6 Mon Sep 17 00:00:00 2001 From: zc Date: Wed, 13 May 2026 14:02:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=8F=8C=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/system/type.ts | 1 + src/router/route.ts | 8 ++-- src/views/fullClaim/index.vue | 43 ++++++++++---------- src/views/login/components/account/index.vue | 7 +++- src/views/login/components/card/index.vue | 6 ++- src/views/login/index.vue | 9 ++-- src/views/system/user/UserAddDrawer.vue | 14 ++++++- src/views/system/user/index.vue | 7 ++++ 8 files changed, 61 insertions(+), 34 deletions(-) diff --git a/src/apis/system/type.ts b/src/apis/system/type.ts index 236dac9..ab38d6c 100644 --- a/src/apis/system/type.ts +++ b/src/apis/system/type.ts @@ -8,6 +8,7 @@ export interface UserResp { email: string phone: string description: string + dataSource: number status: 1 | 2 isSystem?: boolean createUserString: string diff --git a/src/router/route.ts b/src/router/route.ts index adc84fd..84d67b7 100644 --- a/src/router/route.ts +++ b/src/router/route.ts @@ -15,7 +15,7 @@ export const systemRoutes: RouteRecordRaw[] = [ path: '/', name: 'Dashboard', component: Layout, - redirect: '/dashboard/analysis', // 改为跳转到分析页 + redirect: '/workOrder', // 改为跳转到工作订单页 meta: { title: '仪表盘', icon: 'dashboard', hidden: false }, children: [ { @@ -25,9 +25,9 @@ export const systemRoutes: RouteRecordRaw[] = [ meta: { title: '工作台', icon: 'desktop', hidden: true }, // 改为隐藏 }, { - path: '/dashboard/analysis', - name: 'Analysis', - component: () => import('@/views/dashboard/analysis/index.vue'), + path: '/workOrder', + name: 'WorkOrder', + component: () => import('@/views/workOrder/index.vue'), meta: { title: '首页', icon: 'insert-chart', hidden: false, affix: true }, }, ], diff --git a/src/views/fullClaim/index.vue b/src/views/fullClaim/index.vue index a8c3f4b..77d74ee 100644 --- a/src/views/fullClaim/index.vue +++ b/src/views/fullClaim/index.vue @@ -31,10 +31,10 @@