WIP добавил возможность редактирования детальной информации клиента

This commit is contained in:
DwCay
2022-10-21 20:43:17 +03:00
parent 7f03de6155
commit df32fa5da6
11 changed files with 423 additions and 162 deletions

View File

@@ -10,7 +10,7 @@
:id="client.id"
:is-check="marked.includes(client.id)"
:check="selectedCheck"
:full-name="client.fullName"
:full-name="`${client.last_name} ${client.first_name} ${client.patronymic}`"
:age="client.age"
:job-title="client.jobTitle"
:priority="client.priority"
@@ -46,7 +46,7 @@ export default {
},
methods: {
saveDataClients(data) {
this.dataClients = data.dataClients;
this.dataClients = data;
},
fetchDataClients() {
// eslint-disable-next-line