Restructure manager navigation and views

This commit is contained in:
Ruslan Bakiev
2026-04-04 09:29:16 +07:00
parent 264b88bcee
commit ecd92ef7e4
12 changed files with 569 additions and 118 deletions

View File

@@ -19,8 +19,8 @@ const centerCapsule = computed<NavItem[]>(() => {
if (meQuery.result.value?.me?.role === 'MANAGER') {
items.push(
{ to: '/clients', label: 'Клиенты' },
{ to: '/client-orders', label: 'Заказы клиентов' },
{ to: '/clients', label: 'Пользователи' },
{ to: '/client-orders', label: 'Заказы' },
{ to: '/bonus-system', label: 'Бонусы' },
);
}