[WIP] Добавил на форму создания записи: ФИО, Основную информацию, ДУЛ, Адрес, изображение

This commit is contained in:
megavrilinvv
2023-06-09 13:05:50 +03:00
parent c97a350be7
commit 900cc7b2ba
3 changed files with 272 additions and 45 deletions

View File

@@ -3,7 +3,8 @@
calendar-sidebar(v-if="!isOpen", :open-sidebar="openSidebar", :create-form="createForm")
calendar-open-sidebar(v-else, :open-sidebar="openSidebar", :create-form="createForm")
calendar-wrapper.ml-2(:open-sidebar="isOpen")
record-creation-form(:is-show-form="isShowForm")
base-modal(v-model="isShowForm", title="Создание записи")
record-creation-form(v-model="isShowForm")
</template>
<script>
@@ -12,6 +13,7 @@ import CalendarOpenSidebar from "@/pages/newCalendar/components/CalendarOpenSide
import CalendarWrapper from "@/pages/newCalendar/components/CalendarWrapper";
import RecordCreationForm from "@/pages/newCalendar/components/RecordCreationForm";
import * as moment from "moment/moment";
import BaseModal from "@/components/base/BaseModal.vue";
export default {
name: "TheCalendar",
@@ -20,6 +22,7 @@ export default {
CalendarOpenSidebar,
CalendarWrapper,
RecordCreationForm,
BaseModal,
},
data() {
return {