Files
frontend/src/core/utils/headerMenu.js
2025-12-01 11:05:50 +03:30

83 lines
2.6 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const api = process.env.NEXT_PUBLIC_API_URL;
export const headerMenu = [
{
title: "تصادفات",
subMenu: [
[
{
title: "تصادفات روزانه",
href: api + "/v2/daily_accidents/create",
},
],
],
},
{
title: "گزارش های جامع",
subMenu: [
[
{
title: "گزارش محوری",
href: api + "/v2/axis_reports",
},
{
title: "هوش تجاری (BI)",
href: api + "/v2/axis_reports",
},
],
],
},
{
title: "زیرساخت و ناوگان",
subMenu: [
[
{
title: "پراکندگی بر روی نقشه راهدارخانه ها",
href: "/infrastructure/map",
},
{
title: "راهدارخانه ها",
href: "/infrastructure/toll-house",
},
],
[
{
title: "ممیزی ماشین آلات راهداری کشور",
href: api + "/cmms-audit",
},
],
],
},
{
title: "سامانه های راهداری",
subMenu: [
[
{
title: "تحقیق و توسعه",
href: api + "/RandD",
},
{
title: "سامانه مدیریت یکپارچه زیرساخت های راه (PMS,BMS,SMS)",
href: "http://roadams.rmto.ir",
},
{
title: "سامانه مدیریت ناوگان (FMS)",
href: "http://fms.141.ir",
},
{
title: "سامانه جامع مدیریت سوانح و حوادث جاده ای",
href: "https://items.rmto.ir",
},
{
title: "سامانه مدیریت نگهداری ماشین آلات (CMMS)",
href: "https://cmms.rmto.ir/Login.aspx?ReturnUrl=%2f",
},
{
title: "درگاه کاتالوگ داده",
href: "https://roadams.rmto.ir:8080",
},
],
],
},
];