[WIP] Заменил инпуты с датой на baseInput, исправил стили, фикс станицы логина
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user