mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
335 lines
7.7 KiB
Vue
335 lines
7.7 KiB
Vue
<template>
|
||
<div v-if="isOpen" class="modal-overlay" @click="closeModal">
|
||
<div class="modal-content" @click.stop>
|
||
<div class="modal-header">
|
||
<h2>Редактировать сотрудника</h2>
|
||
<button class="close-button" @click="closeModal">×</button>
|
||
</div>
|
||
|
||
<form @submit.prevent="handleSubmit" class="modal-form">
|
||
<div class="form-group">
|
||
<label for="first_name">Имя</label>
|
||
<input
|
||
type="text"
|
||
id="first_name"
|
||
v-model="formData.first_name"
|
||
required
|
||
class="form-input"
|
||
placeholder="Введите имя"
|
||
>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="last_name">Фамилия</label>
|
||
<input
|
||
type="text"
|
||
id="last_name"
|
||
v-model="formData.last_name"
|
||
required
|
||
class="form-input"
|
||
placeholder="Введите фамилию"
|
||
>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="department">Отдел</label>
|
||
<input
|
||
type="text"
|
||
id="department"
|
||
v-model="formData.department"
|
||
required
|
||
class="form-input"
|
||
placeholder="Введите название отдела"
|
||
>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="office">Кабинет</label>
|
||
<input
|
||
type="text"
|
||
id="office"
|
||
v-model="formData.office"
|
||
required
|
||
class="form-input"
|
||
placeholder="Введите номер кабинета"
|
||
>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label for="password">Новый пароль (оставьте пустым, если не хотите менять)</label>
|
||
<input
|
||
type="password"
|
||
id="password"
|
||
v-model="formData.password"
|
||
class="form-input"
|
||
placeholder="Введите новый пароль"
|
||
>
|
||
</div>
|
||
|
||
<div class="form-actions">
|
||
<button type="submit" class="submit-button" :disabled="isLoading">
|
||
{{ isLoading ? 'Сохранение...' : 'Сохранить' }}
|
||
</button>
|
||
<button type="button" class="cancel-button" @click="closeModal">
|
||
Отмена
|
||
</button>
|
||
</div>
|
||
|
||
<p v-if="error" class="error-message">{{ error }}</p>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import axios from 'axios'
|
||
|
||
export default {
|
||
name: 'EditEmployeeModal',
|
||
props: {
|
||
isOpen: {
|
||
type: Boolean,
|
||
required: true
|
||
},
|
||
employee: {
|
||
type: Object,
|
||
required: true
|
||
}
|
||
},
|
||
data() {
|
||
return {
|
||
formData: {
|
||
first_name: '',
|
||
last_name: '',
|
||
department: '',
|
||
office: '',
|
||
password: ''
|
||
},
|
||
error: '',
|
||
isLoading: false
|
||
}
|
||
},
|
||
watch: {
|
||
employee: {
|
||
immediate: true,
|
||
handler(newEmployee) {
|
||
if (newEmployee) {
|
||
this.formData = {
|
||
first_name: newEmployee.first_name,
|
||
last_name: newEmployee.last_name,
|
||
department: newEmployee.department,
|
||
office: newEmployee.office,
|
||
password: ''
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
methods: {
|
||
closeModal() {
|
||
this.$emit('close')
|
||
this.resetForm()
|
||
},
|
||
resetForm() {
|
||
this.formData = {
|
||
first_name: '',
|
||
last_name: '',
|
||
department: '',
|
||
office: '',
|
||
password: ''
|
||
}
|
||
this.error = ''
|
||
},
|
||
async handleSubmit() {
|
||
this.error = ''
|
||
this.isLoading = true
|
||
|
||
try {
|
||
// Создаем объект с данными для обновления
|
||
const updateData = {
|
||
first_name: this.formData.first_name,
|
||
last_name: this.formData.last_name,
|
||
department: this.formData.department,
|
||
office: this.formData.office
|
||
}
|
||
|
||
// Добавляем пароль только если он был введен
|
||
if (this.formData.password) {
|
||
updateData.password = this.formData.password
|
||
}
|
||
|
||
const response = await axios.put(`/api/employees/${this.employee.id}`, updateData, {
|
||
headers: {
|
||
Authorization: `Bearer ${localStorage.getItem('admin_token')}`,
|
||
'Content-Type': 'application/json'
|
||
},
|
||
validateStatus: function (status) {
|
||
return status < 500
|
||
}
|
||
})
|
||
|
||
if (response.status === 307) {
|
||
const redirectUrl = response.headers.location
|
||
const finalResponse = await axios.put(redirectUrl, updateData, {
|
||
headers: {
|
||
Authorization: `Bearer ${localStorage.getItem('admin_token')}`,
|
||
'Content-Type': 'application/json'
|
||
}
|
||
})
|
||
|
||
if (finalResponse.status === 200) {
|
||
this.$emit('employee-updated')
|
||
this.closeModal()
|
||
} else {
|
||
this.error = finalResponse.data?.detail || 'Ошибка при обновлении данных сотрудника'
|
||
}
|
||
} else if (response.status === 200) {
|
||
this.$emit('employee-updated')
|
||
this.closeModal()
|
||
} else {
|
||
this.error = response.data?.detail || 'Ошибка при обновлении данных сотрудника'
|
||
}
|
||
} catch (error) {
|
||
console.error('Error updating employee:', error)
|
||
this.error = error.response?.data?.detail || 'Ошибка при обновлении данных сотрудника'
|
||
} finally {
|
||
this.isLoading = false
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.modal-overlay {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background-color: rgba(0, 0, 0, 0.5);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
z-index: 1000;
|
||
}
|
||
|
||
.modal-content {
|
||
background: white;
|
||
border-radius: 12px;
|
||
padding: 2rem;
|
||
width: 100%;
|
||
max-width: 500px;
|
||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
|
||
}
|
||
|
||
.modal-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 2rem;
|
||
}
|
||
|
||
.modal-header h2 {
|
||
margin: 0;
|
||
color: #1a237e;
|
||
font-size: 1.5rem;
|
||
}
|
||
|
||
.close-button {
|
||
background: none;
|
||
border: none;
|
||
font-size: 1.5rem;
|
||
color: #666;
|
||
cursor: pointer;
|
||
padding: 0.5rem;
|
||
transition: color 0.3s;
|
||
}
|
||
|
||
.close-button:hover {
|
||
color: #1a237e;
|
||
}
|
||
|
||
.modal-form {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 1.5rem;
|
||
}
|
||
|
||
.form-group {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 0.5rem;
|
||
}
|
||
|
||
.form-group label {
|
||
color: #1a237e;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.form-input {
|
||
padding: 0.75rem;
|
||
border: 2px solid #e0e0e0;
|
||
border-radius: 6px;
|
||
font-size: 1rem;
|
||
transition: border-color 0.3s;
|
||
}
|
||
|
||
.form-input:focus {
|
||
outline: none;
|
||
border-color: #1a237e;
|
||
}
|
||
|
||
.form-actions {
|
||
display: flex;
|
||
gap: 1rem;
|
||
margin-top: 1rem;
|
||
}
|
||
|
||
.submit-button {
|
||
flex: 1;
|
||
background-color: #1a237e;
|
||
color: white;
|
||
padding: 0.75rem;
|
||
border: none;
|
||
border-radius: 6px;
|
||
font-size: 1rem;
|
||
font-weight: 500;
|
||
cursor: pointer;
|
||
transition: background-color 0.3s;
|
||
}
|
||
|
||
.submit-button:hover:not(:disabled) {
|
||
background-color: #283593;
|
||
}
|
||
|
||
.submit-button:disabled {
|
||
background-color: #9fa8da;
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
.cancel-button {
|
||
flex: 1;
|
||
background-color: #f5f5f5;
|
||
color: #666;
|
||
padding: 0.75rem;
|
||
border: none;
|
||
border-radius: 6px;
|
||
font-size: 1rem;
|
||
font-weight: 500;
|
||
cursor: pointer;
|
||
transition: all 0.3s;
|
||
}
|
||
|
||
.cancel-button:hover {
|
||
background-color: #e0e0e0;
|
||
color: #1a237e;
|
||
}
|
||
|
||
.error-message {
|
||
color: #d32f2f;
|
||
text-align: center;
|
||
margin: 0;
|
||
font-size: 0.9rem;
|
||
}
|
||
</style> |