feat: publish 0.4.0

This commit is contained in:
就眠儀式 2022-03-20 14:55:26 +08:00
parent 1417247bbe
commit 42239dc507
2 changed files with 9 additions and 6 deletions

View File

@ -3,7 +3,6 @@
<lay-dropdown>
<lay-input :value="dateValue || modelValue" readonly />
<template #content>
<!-- 日期选择 -->
<div class="layui-laydate" v-show="showPanel === 'date'">
<div class="layui-laydate-main laydate-main-list-0">
@ -76,7 +75,7 @@
>
{{ `${hms.hh}:${hms.mm}:${hms.ss}` }}
</span>
<div class="laydate-footer-btns">
<span lay-type="clear" class="laydate-btns-clear">清空</span
><span lay-type="now" class="laydate-btns-now">现在</span
@ -238,12 +237,12 @@ import LayDropdown from "../dropdown/index.vue";
export interface LayDatePickerProps {
modelValue?: string;
type: 'date' | 'datetime' | 'year' | 'time' | 'month';
type: "date" | "datetime" | "year" | "time" | "month";
}
const props = withDefaults(defineProps<LayDatePickerProps>(), {
modelValue: '',
type: 'date'
modelValue: "",
type: "date",
});
const $emits = defineEmits(["update:modelValue"]);

View File

@ -59,7 +59,11 @@ const beforeLeave = (el: any) => {
el.dataset.oldPaddingBottom = el.style.paddingBottom;
el.dataset.oldOverflow = el.style.overflow;
var computedStyle = getComputedStyle(el, null);
el.style.height = el.scrollHeight - parseInt(computedStyle.paddingTop) - parseInt(computedStyle.paddingBottom) + "px";
el.style.height =
el.scrollHeight -
parseInt(computedStyle.paddingTop) -
parseInt(computedStyle.paddingBottom) +
"px";
el.style.overflow = "hidden";
};