WIP Сделала кнопку добавления
This commit is contained in:
29
src/pages/newMedicalCard/components/MedicalProtocolsList.vue
Normal file
29
src/pages/newMedicalCard/components/MedicalProtocolsList.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<template lang="pug">
|
||||
.list-wrapper.h-full.flex.gap-y-1.flex-col
|
||||
.p-4.rounded.background
|
||||
q-btn(
|
||||
color="primary",
|
||||
size="16px",
|
||||
label="Создать осмотр",
|
||||
no-caps,
|
||||
icon="add",
|
||||
:style="{width: '100%'}"
|
||||
)
|
||||
.p-4.rounded.background.h-full
|
||||
base-select
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import BaseSelect from "@/components/base/BaseSelect.vue";
|
||||
export default {
|
||||
name: "MedicalProtocolsList",
|
||||
components: { BaseSelect },
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="sass" scoped>
|
||||
.list-wrapper
|
||||
width: 19.6%
|
||||
.background
|
||||
background-color: var(--default-white)
|
||||
</style>
|
||||
Reference in New Issue
Block a user