[WIP] Заменил инпуты с датой на baseInput, исправил стили, фикс станицы логина

This commit is contained in:
megavrilinvv
2023-01-17 16:01:41 +03:00
parent e667365f2d
commit 9d2dfbffa3
20 changed files with 86 additions and 107 deletions

View File

@@ -3,7 +3,8 @@
:style="{ width : width + 'px'}"
)
span(v-if="!isOpenChange") {{ birthday }}
base-input-date.input.h-10(
base-input(
type="date",
v-if="isOpenChange",
@click.stop,
v-model="value.age"
@@ -11,11 +12,11 @@
</template>
<script>
import BaseInputDate from "@/components/base/BaseInputDate";
import BaseInput from "@/components/base/BaseInput";
import * as moment from "moment/moment";
export default {
name: "TableCellBodyBirthday",
components: { BaseInputDate },
components: { BaseInput },
props: {
value: Object,
width: Number,
@@ -34,7 +35,3 @@ export default {
},
};
</script>
<style lang="sass" scoped>
.input
background-color: var(--default-white)
</style>