Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wellheor1 committed Sep 20, 2023
1 parent 6ecdfc0 commit 328c835
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions l2-frontend/src/pages/Education/EnrolleesTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
/>
<div
v-show="enrollees.length === 0"
class="empty-list"
:class="$style.emptyList"
>
Нет записей
</div>
<div class="flex-space-between">
<div>
<VePagination
:total="enrollees.length"
:page-index="page"
Expand Down
4 changes: 4 additions & 0 deletions l2-frontend/src/ui-cards/PatientPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,7 @@
v-if="enrollees"
:card_pk="selected_card.pk"
:fio="selected_card.family + ' ' + selected_card.name + ' ' + selected_card.twoname"
@hideEnrollees="hideEnrollees"
/>
<AmbulatoryData
v-if="ambulatory_data && selected_card.pk"
Expand Down Expand Up @@ -1573,6 +1574,9 @@ export default {
this.phones_tranfer = rows.org_phones;
this.extrenal_phones = rows.extrenal_phones;
},
hideEnrollees() {
this.enrollees = false;
},
},
};
</script>
Expand Down

0 comments on commit 328c835

Please sign in to comment.