[WIP] Добавил отображение текста при выборе даты и выбор employee
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template lang="pug">
|
||||
.wrapper-bar.flex.flex-col.gap-y-4
|
||||
.flex.px-5.py-5.w-full.justify-around
|
||||
.flex.px-5.py-5.w-full.justify-around.gap-x-4
|
||||
.time-wrapper.flex.justify-between
|
||||
.flex.flex-col.items-center.py-14px.px-4.gap-y-14px
|
||||
.text.text-smm Начало
|
||||
@@ -14,7 +14,7 @@
|
||||
.flex.justify-around(class="py-2.5")
|
||||
base-button.font-semibold(
|
||||
v-for="item in buttons",
|
||||
:class="item.class" ,
|
||||
:class="item.class",
|
||||
:key="item",
|
||||
:style="{minWidth: '190px', minHeight: '43px', border: item.active ? '1.5px solid #5E5E5E' : 'none'}",
|
||||
@click="choiceSchedule(item.class)"
|
||||
@@ -38,7 +38,7 @@ import BaseInputDate from "@/components/base/BaseInputDate.vue";
|
||||
export default {
|
||||
name: "ScheduleBar",
|
||||
components: { BaseButton, BaseCustomSelect, BaseInputTime, BaseInputDate },
|
||||
props: { dataSchedule: Object, selectWork: Function, buttons: Array },
|
||||
props: { dataSchedule: Object, buttons: Array },
|
||||
data() {
|
||||
return {
|
||||
scheduleList: [
|
||||
@@ -90,7 +90,7 @@ export default {
|
||||
color: var(--font-grey-color)
|
||||
|
||||
.status-wrapper
|
||||
width: 690px
|
||||
min-width: 690px
|
||||
height: 102px
|
||||
border: 1.5px solid var(--border-light-grey-color-1)
|
||||
border-radius: 4px
|
||||
|
||||
Reference in New Issue
Block a user