-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3585 from mikhailprivalov/slots-stationar
Лист назначений - запись на услуги
- Loading branch information
Showing
9 changed files
with
211 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<template> | ||
<Modal | ||
ref="modal" | ||
show-footer="true" | ||
white-bg="true" | ||
max-width="600px" | ||
width="100%" | ||
height="20%" | ||
margin-left-right="auto" | ||
margin-top | ||
class="an" | ||
@close="hide" | ||
> | ||
<span slot="header">Расписание</span> | ||
<div | ||
slot="body" | ||
class="modal-body" | ||
> | ||
<ServiceScheduleEcp | ||
:card-id="props.cardPk" | ||
:service-pk="props.serviceNumber" | ||
:direction-id="props.directionId" | ||
/> | ||
</div> | ||
<div slot="footer"> | ||
<div class="row"> | ||
<div class="col-xs-8" /> | ||
<div class="col-xs-4"> | ||
<button | ||
class="btn btn-primary-nb btn-blue-nb" | ||
type="button" | ||
@click="hide" | ||
> | ||
Закрыть | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</Modal> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import Modal from '@/ui-cards/Modal.vue'; | ||
import ServiceScheduleEcp from '@/ui-cards/ServiceScheduleEcp.vue'; | ||
const props = defineProps({ | ||
cardPk: { | ||
type: Number, | ||
required: true, | ||
}, | ||
serviceNumber: { | ||
type: Number, | ||
required: true, | ||
}, | ||
directionId: { | ||
type: Number, | ||
required: false, | ||
}, | ||
}); | ||
const emit = defineEmits(['hide']); | ||
const hide = () => { | ||
emit('hide'); | ||
}; | ||
</script> | ||
|
||
<style scoped lang="scss"> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.