mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
74 lines
1.6 KiB
Vue
74 lines
1.6 KiB
Vue
<template>
|
|
<section class="journal-view">
|
|
<div class="journal-type-options">
|
|
<button
|
|
class="btn btn--text"
|
|
:class="{ checked: journalTypeChosen == 'timetables' }"
|
|
@click="changeJournalType('timetables')"
|
|
>
|
|
ROZKŁADY JAZDY
|
|
</button>
|
|
•
|
|
<button
|
|
class="btn btn--text"
|
|
:class="{ checked: journalTypeChosen == 'dispatchers' }"
|
|
@click="changeJournalType('dispatchers')"
|
|
>
|
|
DYŻURNI
|
|
</button>
|
|
</div>
|
|
|
|
<div class="journal-section">
|
|
<keep-alive>
|
|
<JournalTimetables v-if="journalTypeChosen == 'timetables'" />
|
|
<JournalDispatchers v-else-if="journalTypeChosen == 'dispatchers'" />
|
|
</keep-alive>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import JournalTimetables from '@/components/JournalView/JournalTimetables.vue';
|
|
import { defineComponent } from 'vue';
|
|
import JournalDispatchers from '@/components/JournalView/JournalDispatchers.vue';
|
|
|
|
export default defineComponent({
|
|
components: { JournalTimetables, JournalDispatchers },
|
|
|
|
data() {
|
|
return {
|
|
journalTypeChosen: 'dispatchers',
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
changeJournalType(type: string) {
|
|
this.journalTypeChosen = type;
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.journal-type-options {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
background-color: #2c2c2c;
|
|
width: 350px;
|
|
|
|
font-size: 1.2em;
|
|
margin: 0 auto;
|
|
|
|
border-radius: 0 0 0.5em 0.5em;
|
|
padding: 0.1em 0;
|
|
}
|
|
|
|
.journal-section > section {
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
</style>
|