config.jsx 2.39 KB
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// component
import SvgColor from "@/components/svg-color";

// ----------------------------------------------------------------------

const icon = (name) => (
  <SvgColor
    src={`./assets/icons/navbar/${name}.svg`}
    sx={{ width: 1, height: 1 }}
  />
);

const navConfig = [
  {
    title: "教学中心",
    children: [
      {
        title: "实训管理",
wuhao's avatar
wuhao committed
19
        path: "/work/bustrain",
wuhao's avatar
wuhao committed
20
        icon: icon("ic-shixun"),
wuhao's avatar
wuhao committed
21
        key: "TEACH_TRAIN",
wuhao's avatar
wuhao committed
22 23 24
      },
      {
        title: "作业批阅",
wuhao's avatar
wuhao committed
25
        path: "/work/checkhomework",
wuhao's avatar
wuhao committed
26
        icon: icon("ic_book"),
wuhao's avatar
wuhao committed
27
        key: "TEACH_TASK",
wuhao's avatar
wuhao committed
28 29 30
      },
      {
        title: "成绩单",
wuhao's avatar
wuhao committed
31
        path: "/work/record",
wuhao's avatar
wuhao committed
32 33 34 35
        icon: icon("ic_grade"),
      },
      {
        title: "教学情况",
wuhao's avatar
wuhao committed
36
        path: "/work/situation",
wuhao's avatar
wuhao committed
37 38 39 40 41 42
        icon: icon("ic_jiaoxue"),
      },
    ],
  },
  {
    title: "学习中心",
wuhao's avatar
wuhao committed
43
    children: [
wuhao's avatar
wuhao committed
44 45
      {
        title: "我的实训",
wuhao's avatar
wuhao committed
46
        path: "/work/mybustrain",
wuhao's avatar
wuhao committed
47
        icon: icon("ic_training"),
wuhao's avatar
wuhao committed
48
        key: "STUDY_TRAIN",
wuhao's avatar
wuhao committed
49 50 51
      },
      {
        title: "我的成绩",
wuhao's avatar
wuhao committed
52
        path: "/work/myrecord",
wuhao's avatar
wuhao committed
53
        icon: icon("ic_grades"),
wuhao's avatar
wuhao committed
54
        key: "STUDY_ACHIEVEMENT",
wuhao's avatar
wuhao committed
55 56 57
      },
      {
        title: "学习记录",
wuhao's avatar
wuhao committed
58
        path: "/work/studyrecord",
wuhao's avatar
wuhao committed
59 60
        icon: icon("ic_list"),
      },
wuhao's avatar
wuhao committed
61
    ],
wuhao's avatar
wuhao committed
62 63 64
  },
  {
    title: "管理中心",
wuhao's avatar
wuhao committed
65
    children: [
wuhao's avatar
wuhao committed
66 67
      {
        title: "首页",
wuhao's avatar
wuhao committed
68
        path: "/work/board",
wuhao's avatar
wuhao committed
69 70
        icon: icon("ic_analytics"),
      },
wuhao's avatar
wuhao committed
71 72
      {
        title: "组织管理",
wuhao's avatar
wuhao committed
73
        path: "/work/organization",
wuhao's avatar
wuhao committed
74 75
        icon: icon("ic_org"),
      },
wuhao's avatar
wuhao committed
76 77 78 79 80
      {
        title: "班级管理",
        path: "/work/class",
        icon: icon("ic_class"),
      },
wuhao's avatar
wuhao committed
81 82
      {
        title: "教师管理",
wuhao's avatar
wuhao committed
83
        path: "/work/teacher",
wuhao's avatar
wuhao committed
84
        icon: icon("ic_user"),
wuhao's avatar
wuhao committed
85
        key: "MANAGE_TEACHER",
wuhao's avatar
wuhao committed
86 87 88
      },
      {
        title: "学生管理",
wuhao's avatar
wuhao committed
89
        path: "/work/student",
wuhao's avatar
wuhao committed
90
        icon: icon("ic_student"),
wuhao's avatar
wuhao committed
91
        key: "MANAGE_STUDENT",
wuhao's avatar
wuhao committed
92
      },
wuhao's avatar
wuhao committed
93

wuhao's avatar
wuhao committed
94
      {
wuhao's avatar
wuhao committed
95 96
        title: "课程管理",
        path: "/work/lessons",
wuhao's avatar
wuhao committed
97 98 99 100
        icon: icon("ic_lock"),
      },
      {
        title: "模型管理",
wuhao's avatar
wuhao committed
101
        path: "/work/model",
wuhao's avatar
wuhao committed
102 103
        icon: icon("ic_3d"),
      },
wuhao's avatar
wuhao committed
104 105 106 107 108
      {
        title: "探针管理",
        path: "/work/tangzhen",
        icon: icon("ic_zhen"),
      },
wuhao's avatar
wuhao committed
109 110
      {
        title: "平台日志",
wuhao's avatar
wuhao committed
111
        path: "/work/logs",
wuhao's avatar
wuhao committed
112 113
        icon: icon("ic_blog"),
      },
wuhao's avatar
wuhao committed
114
    ],
wuhao's avatar
wuhao committed
115 116 117 118
  },
];

export default navConfig;