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 @@