diff --git a/frontend/src/composables/useRequests.ts b/frontend/src/composables/useRequests.ts index ee6754b..4cadcd2 100644 --- a/frontend/src/composables/useRequests.ts +++ b/frontend/src/composables/useRequests.ts @@ -1,12 +1,19 @@ import { ref } from 'vue'; -import type { Request } from '@/types/request'; + +interface Request { + id: number; + employee_last_name: string; + request_type: string; + status: string; + created_at: string; +} export function useRequests() { const requests = ref([]); const fetchRequests = async () => { try { - const response = await fetch('/api/admin/requests'); + const response = await fetch('/api/requests/'); if (!response.ok) throw new Error('Failed to fetch requests'); requests.value = await response.json(); } catch (error) { diff --git a/frontend/src/utils/labels.ts b/frontend/src/utils/labels.ts index bfe0e48..b6e72e3 100644 --- a/frontend/src/utils/labels.ts +++ b/frontend/src/utils/labels.ts @@ -1,22 +1,20 @@ -const STATUS_LABELS: Record = { +export const getRequestTypeLabel = (type: string): string => { + const types: Record = { + hardware: 'Оборудование', + software: 'Программное обеспечение', + network: 'Сеть', + access: 'Доступ', + other: 'Другое' + }; + return types[type] || type; +}; + +export const getStatusLabel = (status: string): string => { + const statuses: Record = { new: 'Новая', in_progress: 'В работе', resolved: 'Решена', closed: 'Закрыта' }; - - const REQUEST_TYPE_LABELS: Record = { - hardware: 'Проблемы с оборудованием', - software: 'Проблемы с ПО', - network: 'Проблемы с сетью', - access: 'Доступ к системам', - other: 'Другое' - }; - - export const getStatusLabel = (status: string): string => { - return STATUS_LABELS[status] || status; - }; - - export const getRequestTypeLabel = (type: string): string => { - return REQUEST_TYPE_LABELS[type] || type; - }; \ No newline at end of file + return statuses[status] || status; +}; \ No newline at end of file