2025-12-04 23:34:00 +03:30
|
|
|
import { MenuItem } from 'primeng/api';
|
2026-03-16 00:35:34 +03:30
|
|
|
export const SUPER_ADMIN_MENU_ITEMS = [
|
2025-12-04 23:34:00 +03:30
|
|
|
{
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
label: 'داشبورد',
|
|
|
|
|
icon: 'pi pi-fw pi-home',
|
2026-03-16 00:35:34 +03:30
|
|
|
routerLink: ['/'],
|
2025-12-04 23:34:00 +03:30
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2026-03-14 16:26:22 +03:30
|
|
|
|
|
|
|
|
{
|
|
|
|
|
label: 'مدیریت اطلاعات مرجع',
|
|
|
|
|
icon: 'pi pi-fw pi-cog',
|
|
|
|
|
items: [
|
2026-03-16 00:35:34 +03:30
|
|
|
{
|
|
|
|
|
label: 'اصناف',
|
|
|
|
|
icon: 'pi pi-fw pi-building',
|
|
|
|
|
routerLink: ['/super_admin/guilds'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'لایسنسها',
|
|
|
|
|
icon: 'pi pi-fw pi-credit-card',
|
|
|
|
|
routerLink: ['/super_admin/licenses'],
|
|
|
|
|
},
|
2026-03-14 16:26:22 +03:30
|
|
|
{
|
|
|
|
|
label: 'برندهای دستگاه',
|
|
|
|
|
icon: 'pi pi-fw pi-list',
|
|
|
|
|
routerLink: ['/super_admin/device_brands'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'دستگاهها',
|
|
|
|
|
icon: 'pi pi-fw pi-list',
|
|
|
|
|
routerLink: ['/super_admin/devices'],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
2025-12-04 23:34:00 +03:30
|
|
|
{
|
2026-03-16 00:35:34 +03:30
|
|
|
label: 'مدیریت کاربران',
|
2026-03-10 13:36:45 +03:30
|
|
|
icon: 'pi pi-fw pi-cog',
|
2025-12-04 23:34:00 +03:30
|
|
|
items: [
|
|
|
|
|
{
|
2026-03-10 13:36:45 +03:30
|
|
|
label: 'کاربران',
|
|
|
|
|
icon: 'pi pi-fw pi-user',
|
|
|
|
|
routerLink: ['/super_admin/users'],
|
2025-12-04 23:34:00 +03:30
|
|
|
},
|
|
|
|
|
{
|
2026-03-16 00:35:34 +03:30
|
|
|
label: 'مشتریان',
|
|
|
|
|
icon: 'pi pi-fw pi-user',
|
|
|
|
|
routerLink: ['/super_admin/consumers'],
|
2025-12-04 23:34:00 +03:30
|
|
|
},
|
2026-03-16 00:35:34 +03:30
|
|
|
|
2025-12-04 23:34:00 +03:30
|
|
|
{
|
2026-03-10 13:36:45 +03:30
|
|
|
label: 'شرکای تجاری',
|
|
|
|
|
icon: 'pi pi-fw pi-credit-card',
|
|
|
|
|
routerLink: ['/super_admin/partners'],
|
2025-12-24 21:25:13 +03:30
|
|
|
},
|
|
|
|
|
{
|
2026-03-10 13:36:45 +03:30
|
|
|
label: 'ارایهدهندگان',
|
2025-12-24 21:25:13 +03:30
|
|
|
icon: 'pi pi-fw pi-credit-card',
|
2026-03-10 13:36:45 +03:30
|
|
|
routerLink: ['/super_admin/providers'],
|
2025-12-04 23:34:00 +03:30
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
] as MenuItem[];
|