fix(BE): show calendar and comps
This commit is contained in:
parent
35d7de8b49
commit
bb1c3c63d4
3 changed files with 26 additions and 12 deletions
|
@ -1,8 +1,16 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
import {WeekDaysData} from "@models/show/ShowRepetition.ts";
|
||||
import type {PropType} from "vue";
|
||||
import type {Show} from "@models/show/show.ts";
|
||||
|
||||
const selectedDays = defineModel()
|
||||
|
||||
const props = defineProps({
|
||||
fixedDay: {
|
||||
type: Number,
|
||||
required: false,
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -14,6 +22,7 @@ const selectedDays = defineModel()
|
|||
v-model="selectedDays"
|
||||
:label="day.dayName"
|
||||
:value="day.type"
|
||||
:disabled="day.type === props.fixedDay"
|
||||
/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
|
|
@ -3,7 +3,7 @@ import type { PropType} from "vue";
|
|||
import type {ContextMenuType} from "@models/misc/contextMenu"
|
||||
import type {calendarShowEvent, ShowEventActionTrigger} from "@models/misc/calendarShowEvent.ts";
|
||||
import {calendarShowEventMenu} from "@models/misc/calendarShowEvent";
|
||||
import {ref, computed, onMounted} from 'vue';
|
||||
import { ref } from 'vue';
|
||||
import ContextMenu from '@partials/ContextMenu.vue';
|
||||
|
||||
const emit = defineEmits([
|
Loading…
Add table
Add a link
Reference in a new issue