From beca65f4d01ca07c358102a35b949c2a4f277afe Mon Sep 17 00:00:00 2001
From: baoshiwei <baoshiwei@shlanbao.cn>
Date: 星期三, 24 五月 2023 10:36:27 +0800
Subject: [PATCH] 增加车间监控界面

---
 src/router/routes/basic.ts |  132 ++++++++++++++++++++++----------------------
 1 files changed, 66 insertions(+), 66 deletions(-)

diff --git a/src/router/routes/basic.ts b/src/router/routes/basic.ts
index 3dddee2..afd0b1b 100644
--- a/src/router/routes/basic.ts
+++ b/src/router/routes/basic.ts
@@ -1,73 +1,73 @@
-import type { AppRouteRecordRaw } from '/@/router/types';
-import { t } from '/@/hooks/web/useI18n';
-import { REDIRECT_NAME, LAYOUT, EXCEPTION_COMPONENT, PAGE_NOT_FOUND_NAME } from '/@/router/constant';
+import { t } from '/@/hooks/web/useI18n'
+import { EXCEPTION_COMPONENT, LAYOUT, PAGE_NOT_FOUND_NAME, REDIRECT_NAME } from '/@/router/constant'
+import type { AppRouteRecordRaw } from '/@/router/types'
 
 // 404 on a page
 export const PAGE_NOT_FOUND_ROUTE: AppRouteRecordRaw = {
-  path: '/:path(.*)*',
-  name: PAGE_NOT_FOUND_NAME,
-  component: LAYOUT,
-  meta: {
-    title: 'ErrorPage',
-    hideBreadcrumb: true,
-    hideMenu: true,
-  },
-  children: [
-    {
-      path: '/:path(.*)*',
-      name: PAGE_NOT_FOUND_NAME,
-      component: EXCEPTION_COMPONENT,
-      meta: {
-        title: 'ErrorPage',
-        hideBreadcrumb: true,
-        hideMenu: true,
-      },
-    },
-  ],
-};
+	path: '/:path(.*)*',
+	name: PAGE_NOT_FOUND_NAME,
+	component: LAYOUT,
+	meta: {
+		title: 'ErrorPage',
+		hideBreadcrumb: true,
+		hideMenu: true,
+	},
+	children: [
+		{
+			path: '/:path(.*)*',
+			name: PAGE_NOT_FOUND_NAME,
+			component: EXCEPTION_COMPONENT,
+			meta: {
+				title: 'ErrorPage',
+				hideBreadcrumb: true,
+				hideMenu: true,
+			},
+		},
+	],
+}
 
 export const REDIRECT_ROUTE: AppRouteRecordRaw = {
-  path: '/redirect',
-  component: LAYOUT,
-  name: 'RedirectTo',
-  meta: {
-    title: REDIRECT_NAME,
-    hideBreadcrumb: true,
-    hideMenu: true,
-  },
-  children: [
-    {
-      path: '/redirect/:path(.*)',
-      name: REDIRECT_NAME,
-      component: () => import('/@/views/sys/redirect/index.vue'),
-      meta: {
-        title: REDIRECT_NAME,
-        hideBreadcrumb: true,
-      },
-    },
-  ],
-};
+	path: '/redirect',
+	component: LAYOUT,
+	name: 'RedirectTo',
+	meta: {
+		title: REDIRECT_NAME,
+		hideBreadcrumb: true,
+		hideMenu: true,
+	},
+	children: [
+		{
+			path: '/redirect/:path(.*)',
+			name: REDIRECT_NAME,
+			component: () => import('/@/views/sys/redirect/index.vue'),
+			meta: {
+				title: REDIRECT_NAME,
+				hideBreadcrumb: true,
+			},
+		},
+	],
+}
 
 export const ERROR_LOG_ROUTE: AppRouteRecordRaw = {
-  path: '/error-log',
-  name: 'ErrorLog',
-  component: LAYOUT,
-  redirect: '/error-log/list',
-  meta: {
-    title: 'ErrorLog',
-    hideBreadcrumb: true,
-    hideChildrenInMenu: true,
-  },
-  children: [
-    {
-      path: 'list',
-      name: 'ErrorLogList',
-      component: () => import('/@/views/sys/error-log/index.vue'),
-      meta: {
-        title: t('routes.basic.errorLogList'),
-        hideBreadcrumb: true,
-        currentActiveMenu: '/error-log',
-      },
-    },
-  ],
-};
+	path: '/error-log',
+	name: 'ErrorLog',
+	component: LAYOUT,
+	redirect: '/error-log/list',
+	meta: {
+		title: 'ErrorLog',
+		hideBreadcrumb: true,
+		hideChildrenInMenu: true,
+	},
+	children: [
+		{
+			path: 'list',
+			name: 'ErrorLogList',
+			component: () => import('/@/views/sys/error-log/index.vue'),
+			meta: {
+				title: t('routes.basic.errorLogList'),
+				hideBreadcrumb: true,
+				currentActiveMenu: '/error-log',
+			},
+		},
+	],
+}

--
Gitblit v1.9.3