更换系统主菜单

dev
wangpeng 2024-02-22 16:18:58 +08:00
parent dd91ce3a28
commit d3be2a8f2a
1 changed files with 8 additions and 8 deletions

View File

@ -2,18 +2,18 @@
// 头部导航条切换的model
export const MODEL = {
1: "prevention",
2: "educationAndTraining",
3: "highRisk",
4: "monitor",
1: "corpManagement",
2: "mechanicalMaintenanceArchives",
3: "prevention",
4: "educationAndTraining",
5: "comprehensive",
};
// 头部导航条
export const MENU = [
{ title: "双重预防", model: MODEL["1"] },
{ title: "教育培训", model: MODEL["2"] },
{ title: "高危作业管理", model: MODEL["3"] },
{ title: "监测预警", model: MODEL["4"] },
{ title: "企业信息", model: MODEL["1"] },
{ title: "机务档案", model: MODEL["2"] },
{ title: "双重预防", model: MODEL["3"] },
{ title: "教育培训", model: MODEL["4"] },
{ title: "综合管理", model: MODEL["5"] },
];