forked from verdnatura/salix-front
improvement
This commit is contained in:
parent
9212e53905
commit
d5832eaf41
|
@ -1,6 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed, ref } from 'vue';
|
import { computed, ref } from 'vue';
|
||||||
import VnInput from 'components/common/VnInput.vue';
|
|
||||||
import isValidDate from 'filters/isValidDate';
|
import isValidDate from 'filters/isValidDate';
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
|
@ -80,7 +79,7 @@ const styleAttrs = computed(() => {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div @mouseover="hover = true" @mouseleave="hover = false">
|
<div @mouseover="hover = true" @mouseleave="hover = false">
|
||||||
<VnInput
|
<QInput
|
||||||
class="vn-input-date"
|
class="vn-input-date"
|
||||||
readonly
|
readonly
|
||||||
:model-value="displayDate(value)"
|
:model-value="displayDate(value)"
|
||||||
|
@ -110,7 +109,7 @@ const styleAttrs = computed(() => {
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</QIcon>
|
</QIcon>
|
||||||
</template>
|
</template>
|
||||||
</VnInput>
|
</QInput>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ defineProps({
|
||||||
:class="{ empty: !$props.item.value5 }"
|
:class="{ empty: !$props.item.value5 }"
|
||||||
:title="$props.item.tag5 + ': ' + $props.item.value5"
|
:title="$props.item.tag5 + ': ' + $props.item.value5"
|
||||||
>
|
>
|
||||||
{{ $props.item.value5 }}s
|
{{ $props.item.value5 }}
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="inline-tag"
|
class="inline-tag"
|
||||||
|
|
Loading…
Reference in New Issue