From e1699c4851f6ca397cd0ad1ff63f32c737654836 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Wed, 02 Apr 2025 19:14:54 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
src/router/views/index.js | 102 ++++++++++++++++++++++++++------------------------
1 files changed, 53 insertions(+), 49 deletions(-)
diff --git a/src/router/views/index.js b/src/router/views/index.js
index 500ca0f..b75a3e2 100644
--- a/src/router/views/index.js
+++ b/src/router/views/index.js
@@ -1,51 +1,55 @@
-import Index from '@/layout/index.vue';
-import Store from '@/store/';
-import Layout from '@/page/index/layout.vue';
+import Index from '@/layout/index.vue'
+import Store from '@/store/'
+import Layout from '@/page/index/layout.vue'
export default [
- {
- path: '/',
- component: () => import('@/layout/index.vue'),
- redirect: '/index',
- children: [
- {
- path: 'index',
- name: '首页',
- meta: {
- i18n: 'dashboard',
- },
- component: () => import(/* webpackChunkName: "home" */ '@/views/Home/Home.vue'),
- },
- {
- path: 'signMachineNest',
- name: '单个机巢详情',
- meta: {
- i18n: 'dashboard',
- menu: false,
- },
- component: () => import(/* webpackChunkName: "TaskManage" */ '@/views/SignMachineNest/SignMachineNest.vue'),
- },
- {
- path: 'taskManage',
- name: '任务管理',
- meta: {
- i18n: 'dashboard',
- menu: false,
- },
- component: () => import(/* webpackChunkName: "TaskManage" */ '@/views/TaskManage/TaskManage.vue'),
- },
- ],
- },
- {
- path: '/info',
- component: () => import('@/layout/index.vue'),
- redirect: '/info/index',
- children: [
- {
- path: 'index',
- name: '个人信息',
- component: () => import('@/views/System/Userinfo.vue'),
- },
- ],
- },
-];
+ {
+ path: '/',
+ component: () => import('@/layout/index.vue'),
+ redirect: '/index',
+ children: [
+ {
+ path: 'index',
+ name: '首页',
+ meta: {
+ i18n: 'dashboard',
+ },
+ component: () => import(/* webpackChunkName: "home" */ '@/views/Home/Home.vue'),
+ },
+ {
+ path: 'signMachineNest',
+ name: '单个机巢详情',
+ meta: {
+ i18n: 'dashboard',
+ menu: false,
+ },
+ component: () =>
+ import(
+ /* webpackChunkName: "TaskManage" */ '@/views/SignMachineNest/SignMachineNest.vue'
+ ),
+ },
+ {
+ path: 'taskManage',
+ name: '任务管理',
+ meta: {
+ i18n: 'dashboard',
+ menu: false,
+ },
+ component: () =>
+ import(/* webpackChunkName: "TaskManage" */ '@/views/TaskManage/TaskManage.vue'),
+ },
+ ],
+ },
+ {
+ path: '/info',
+ component: () => import('@/layout/index.vue'),
+ redirect: '/info/index',
+ children: [
+ {
+ path: 'index',
+ name: '个人信息',
+ component: () => import('@/views/System/Userinfo.vue'),
+ },
+ ],
+ },
+]
--
Gitblit v1.9.3