WIP Исправлены найденные baseInputs

This commit is contained in:
Daria Golova
2022-12-29 15:21:21 +03:00
parent c664f11bfb
commit e138bedfac
31 changed files with 200 additions and 228 deletions

View File

@@ -1,10 +1,15 @@
<template lang="pug">
.flex.box-border.px-4.items-center.w-full.gap-x-2(:style="{ minWidth : width + 'px', maxWidth : width + 'px' }")
.flex.box-border.px-4.items-center.w-full.gap-x-2(:style="{ width : width + 'px'}")
.flex.gap-x-2.items-center(v-if="!isOpenChange")
.dot.w-2.h-2(:style="{ backgroundColor: prioritySettings.settings.find((el) => el.text == value.priority).color }")
span.text-sm(:style="{ color: prioritySettings.settings.find((el) => el.text == value.priority).color }") {{value.priority}}
.flex.gap-x-2.text-sm(class="w-[164px]")
base-select(v-if="isOpenChange", @click.stop :items="getPriorityList", v-model="value.priority")
base-select(
v-if="isOpenChange",
@click.stop :items="getPriorityList",
v-model="value.priority",
textStyle="text-sm"
)
</template>
<script>