[WIP] Добавил страницу Зубных формул

This commit is contained in:
DwCay
2023-07-04 18:09:23 +03:00
parent e9e737e851
commit d7c304fbee
10 changed files with 224 additions and 27 deletions

View File

@@ -14,12 +14,12 @@
size="20px",
)
.flex.flex-col.h-full.gap-25px.p-6
.flex.w-full.justify-between
.flex.w-full.justify-between(v-if="!noTopButtons")
.flex.w-fit.gap-11px.items-center(v-if="!tag")
span.font-bold.text-base.whitespace-nowrap {{title}}
q-icon.edit-button.text-lg.cursor-pointer(
name="app:edit",
v-if="!isEdit",
v-if="!isEdit && !noEditBtn",
@click="openEdit",
size="20"
)
@@ -42,7 +42,6 @@
)
q-icon(name="app:basket" size="20")
span.text-smm.font-medium {{ titleDelete }}
slot(name="right-corner")
slot
.flex.h-fit.w-fit.gap-2(v-if="isEdit && buttonsPresence")
q-btn(
@@ -82,6 +81,8 @@ export default {
template: Boolean,
title: String,
titleDelete: String,
noEditBtn: Boolean,
noTopButtons: Boolean,
cancel: {
type: Function,
default: () => {},