1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

Починка добавления сотрудника8

This commit is contained in:
MoonTestUse1
2024-12-27 02:59:58 +06:00
parent e7f371351a
commit e8136ec433

View File

@@ -3,7 +3,7 @@
<div class="flex justify-between items-center mb-6">
<h2 class="text-lg font-semibold">Сотрудники</h2>
<button
@click="handleAddClick"
@click="showAddForm = true"
class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 flex items-center gap-2"
>
<UserPlusIcon :size="18" />
@@ -50,56 +50,171 @@
</table>
</div>
<div v-if="showAddForm || editingEmployee" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center">
<EmployeeForm
:employee="editingEmployee"
@close="closeForm"
@submit="handleSubmit"
<!-- Модальное окно -->
<div v-show="showAddForm || editingEmployee" class="fixed inset-0 overflow-y-auto" style="z-index: 100;">
<div class="flex items-center justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
<div class="fixed inset-0 transition-opacity" aria-hidden="true">
<div class="absolute inset-0 bg-gray-500 opacity-75"></div>
</div>
<div class="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full">
<div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
<div class="sm:flex sm:items-start">
<div class="mt-3 text-center sm:mt-0 sm:text-left w-full">
<h3 class="text-lg leading-6 font-medium text-gray-900 mb-4">
{{ editingEmployee ? 'Редактировать сотрудника' : 'Добавить сотрудника' }}
</h3>
<form @submit.prevent="handleSubmit" class="space-y-4">
<div class="grid grid-cols-1 gap-4">
<div>
<label class="block text-sm font-medium text-gray-700">Фамилия</label>
<input
v-model="formData.last_name"
type="text"
required
class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"
/>
</div>
<div>
<label class="block text-sm font-medium text-gray-700">Имя</label>
<input
v-model="formData.first_name"
type="text"
required
class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"
/>
</div>
<div>
<label class="block text-sm font-medium text-gray-700">Отдел</label>
<select
v-model="formData.department"
required
class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"
>
<option value="">Выберите отдел</option>
<option v-for="dept in departments" :key="dept.value" :value="dept.value">
{{ dept.label }}
</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700">Кабинет</label>
<input
v-model="formData.office"
type="text"
required
class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"
/>
</div>
<div>
<label class="block text-sm font-medium text-gray-700">
Пароль {{ !editingEmployee ? '(обязательно)' : '(оставьте пустым, чтобы не менять)' }}
</label>
<input
v-model="formData.password"
type="password"
:required="!editingEmployee"
class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"
/>
</div>
</div>
<div class="mt-5 sm:mt-4 sm:flex sm:flex-row-reverse">
<button
type="submit"
class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-600 text-base font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:ml-3 sm:w-auto sm:text-sm"
>
{{ editingEmployee ? 'Сохранить' : 'Добавить' }}
</button>
<button
type="button"
@click="closeForm"
class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:mt-0 sm:w-auto sm:text-sm"
>
Отмена
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { ref, onMounted } from 'vue';
import { ref, onMounted, watch } from 'vue';
import { UserPlusIcon, PencilIcon } from 'lucide-vue-next';
import { departments } from '@/utils/constants';
import type { Employee, EmployeeFormData } from '@/types/employee';
import EmployeeForm from './EmployeeForm.vue';
console.log('Initializing EmployeeList component');
const employees = ref<Employee[]>([]);
const showAddForm = ref(false);
const editingEmployee = ref<Employee | null>(null);
const formData = ref<EmployeeFormData>({
first_name: '',
last_name: '',
department: '',
office: '',
password: ''
});
// Сброс формы при закрытии
function resetForm() {
formData.value = {
first_name: '',
last_name: '',
department: '',
office: '',
password: ''
};
}
// Наблюдаем за изменением editingEmployee
watch(editingEmployee, (newEmployee) => {
if (newEmployee) {
formData.value = {
first_name: newEmployee.first_name,
last_name: newEmployee.last_name,
department: newEmployee.department,
office: newEmployee.office,
password: ''
};
} else {
resetForm();
}
});
function getDepartmentLabel(value: string) {
return departments.find(d => d.value === value)?.label || value;
}
function editEmployee(employee: Employee) {
console.log('Editing employee:', employee);
editingEmployee.value = employee;
showAddForm.value = true;
}
function closeForm() {
console.log('Closing form');
showAddForm.value = false;
editingEmployee.value = null;
resetForm();
}
// Добавляем отладочный вывод для кнопки
function handleAddClick() {
console.log('Add button clicked');
console.log('Previous showAddForm value:', showAddForm.value);
showAddForm.value = true;
console.log('New showAddForm value:', showAddForm.value);
}
async function handleSubmit(data: EmployeeFormData) {
console.log('Submitting form data:', data);
async function handleSubmit() {
try {
const data = { ...formData.value };
if (editingEmployee.value && !data.password) {
delete data.password;
}
if (editingEmployee.value) {
// Update existing employee
const response = await fetch(`/api/employees/${editingEmployee.value.id}`, {
@@ -145,7 +260,6 @@ async function fetchEmployees() {
}
onMounted(() => {
console.log('Component mounted');
fetchEmployees();
});
</script>