forked from verdnatura/salix-front
merge with dev
This commit is contained in:
commit
dc29c51cf4
|
@ -1,83 +0,0 @@
|
||||||
<script setup>
|
|
||||||
const $props = defineProps({
|
|
||||||
id: { type: Number, default: null },
|
|
||||||
title: { type: String, default: null },
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<template>
|
|
||||||
<QCard class="card q-mb-md cursor-pointer q-hoverable bg-white-7 q-pa-lg">
|
|
||||||
<div>
|
|
||||||
<slot name="title">
|
|
||||||
<div class="title text-primary text-weight-bold text-h5">
|
|
||||||
{{ $props.title ?? `#${$props.id}` }}
|
|
||||||
</div>
|
|
||||||
</slot>
|
|
||||||
<div class="card-list-body row">
|
|
||||||
<div class="list-items row flex-wrap-wrap q-mt-md">
|
|
||||||
<slot name="list-items" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="actions column justify-center">
|
|
||||||
<slot name="actions" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</QCard>
|
|
||||||
</template>
|
|
||||||
<style lang="scss">
|
|
||||||
.card-list-body {
|
|
||||||
.vn-label-value {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-start;
|
|
||||||
gap: 2%;
|
|
||||||
width: 50%;
|
|
||||||
.label {
|
|
||||||
width: 30%;
|
|
||||||
color: var(--vn-label);
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
.value {
|
|
||||||
width: 60%;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.actions {
|
|
||||||
.q-btn {
|
|
||||||
width: 30px;
|
|
||||||
}
|
|
||||||
.q-icon {
|
|
||||||
color: $primary;
|
|
||||||
font-size: 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: $breakpoint-xs) {
|
|
||||||
.card-list-body {
|
|
||||||
.vn-label-value {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.card {
|
|
||||||
transition: background-color 0.2s;
|
|
||||||
}
|
|
||||||
.card:hover {
|
|
||||||
background-color: var(--vn-gray);
|
|
||||||
}
|
|
||||||
.list-items {
|
|
||||||
width: 90%;
|
|
||||||
}
|
|
||||||
@media (max-width: $breakpoint-xs) {
|
|
||||||
.list-items {
|
|
||||||
width: 85%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -652,10 +652,10 @@ export default {
|
||||||
logOut: 'Log Out',
|
logOut: 'Log Out',
|
||||||
},
|
},
|
||||||
smartCard: {
|
smartCard: {
|
||||||
openCard: 'View card',
|
|
||||||
openSummary: 'Preview',
|
|
||||||
viewDescription: 'View description',
|
|
||||||
clone: 'Clone',
|
clone: 'Clone',
|
||||||
|
openCard: 'View',
|
||||||
|
openSummary: 'Summary',
|
||||||
|
viewDescription: 'Description',
|
||||||
},
|
},
|
||||||
cardDescriptor: {
|
cardDescriptor: {
|
||||||
mainList: 'Main list',
|
mainList: 'Main list',
|
||||||
|
|
|
@ -654,10 +654,10 @@ export default {
|
||||||
logOut: 'Cerrar sesión',
|
logOut: 'Cerrar sesión',
|
||||||
},
|
},
|
||||||
smartCard: {
|
smartCard: {
|
||||||
|
clone: 'Clonar',
|
||||||
openCard: 'Ficha',
|
openCard: 'Ficha',
|
||||||
openSummary: 'Detalles',
|
openSummary: 'Detalles',
|
||||||
viewDescription: 'Ver descripción',
|
viewDescription: 'Descripción',
|
||||||
clone: 'Clonar',
|
|
||||||
},
|
},
|
||||||
cardDescriptor: {
|
cardDescriptor: {
|
||||||
mainList: 'Listado principal',
|
mainList: 'Listado principal',
|
||||||
|
|
|
@ -79,13 +79,13 @@ function viewSummary(id) {
|
||||||
>
|
>
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<CardList
|
<CardList
|
||||||
v-for="row of rows"
|
:id="row.id"
|
||||||
:key="row.id"
|
:key="row.id"
|
||||||
:title="row.clientName"
|
:title="row.clientName"
|
||||||
@click="navigate(row.id)"
|
@click="navigate(row.id)"
|
||||||
|
v-for="row of rows"
|
||||||
>
|
>
|
||||||
<template #list-items>
|
<template #list-items>
|
||||||
<VnLv label="ID" :value="row.id" />
|
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('claim.list.customer')"
|
:label="t('claim.list.customer')"
|
||||||
:value="row.clientName"
|
:value="row.clientName"
|
||||||
|
@ -100,11 +100,7 @@ function viewSummary(id) {
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('claim.list.state')">
|
<VnLv :label="t('claim.list.state')">
|
||||||
<template #value>
|
<template #value>
|
||||||
<QBadge
|
<QBadge :color="stateColor(row.stateCode)" dense>
|
||||||
:color="stateColor(row.stateCode)"
|
|
||||||
class="q-ma-none"
|
|
||||||
dense
|
|
||||||
>
|
|
||||||
{{ row.stateDescription }}
|
{{ row.stateDescription }}
|
||||||
</QBadge>
|
</QBadge>
|
||||||
</template>
|
</template>
|
||||||
|
@ -112,26 +108,26 @@ function viewSummary(id) {
|
||||||
</template>
|
</template>
|
||||||
<template #actions>
|
<template #actions>
|
||||||
<QBtn
|
<QBtn
|
||||||
flat
|
:label="t('components.smartCard.openCard')"
|
||||||
icon="arrow_circle_right"
|
|
||||||
@click.stop="navigate(row.id)"
|
@click.stop="navigate(row.id)"
|
||||||
|
color="white"
|
||||||
|
outline
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="t('components.smartCard.viewDescription')"
|
||||||
|
@click.stop
|
||||||
|
color="white"
|
||||||
|
outline
|
||||||
|
style="margin-top: 15px"
|
||||||
>
|
>
|
||||||
<QTooltip>
|
|
||||||
{{ t('components.smartCard.openCard') }}
|
|
||||||
</QTooltip>
|
|
||||||
</QBtn>
|
|
||||||
<QBtn flat icon="preview" @click.stop="viewSummary(row.id)">
|
|
||||||
<QTooltip>
|
|
||||||
{{ t('components.smartCard.openSummary') }}
|
|
||||||
</QTooltip>
|
|
||||||
</QBtn>
|
|
||||||
<QBtn flat icon="vn:client" @click.stop>
|
|
||||||
<QTooltip>
|
|
||||||
{{ t('components.smartCard.viewDescription') }}
|
|
||||||
</QTooltip>
|
|
||||||
|
|
||||||
<CustomerDescriptorProxy :id="row.clientFk" />
|
<CustomerDescriptorProxy :id="row.clientFk" />
|
||||||
</QBtn>
|
</QBtn>
|
||||||
|
<QBtn
|
||||||
|
:label="t('components.smartCard.openSummary')"
|
||||||
|
@click.stop="viewSummary(row.id)"
|
||||||
|
color="primary"
|
||||||
|
style="margin-top: 15px"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
</CardList>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -81,25 +81,17 @@ function viewSummary(id) {
|
||||||
</template>
|
</template>
|
||||||
<template #actions>
|
<template #actions>
|
||||||
<QBtn
|
<QBtn
|
||||||
flat
|
:label="t('components.smartCard.openCard')"
|
||||||
color="primary"
|
|
||||||
icon="arrow_circle_right"
|
|
||||||
@click.stop="navigate(row.id)"
|
@click.stop="navigate(row.id)"
|
||||||
>
|
color="white"
|
||||||
<QTooltip>
|
outline
|
||||||
{{ t('components.smartCard.openCard') }}
|
/>
|
||||||
</QTooltip>
|
|
||||||
</QBtn>
|
|
||||||
<QBtn
|
<QBtn
|
||||||
flat
|
:label="t('components.smartCard.openSummary')"
|
||||||
color="grey-7"
|
|
||||||
icon="preview"
|
|
||||||
@click.stop="viewSummary(row.id)"
|
@click.stop="viewSummary(row.id)"
|
||||||
>
|
color="primary"
|
||||||
<QTooltip>
|
style="margin-top: 15px"
|
||||||
{{ t('components.smartCard.openSummary') }}
|
/>
|
||||||
</QTooltip>
|
|
||||||
</QBtn>
|
|
||||||
</template>
|
</template>
|
||||||
</CardList>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -10,7 +10,7 @@ import { toDate, toCurrency } from 'src/filters/index';
|
||||||
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
import InvoiceOutFilter from './InvoiceOutFilter.vue';
|
import InvoiceOutFilter from './InvoiceOutFilter.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import CardList2 from 'src/components/ui/CardList2.vue';
|
import CardList from 'src/components/ui/CardList.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const arrayElements = ref([]);
|
const arrayElements = ref([]);
|
||||||
|
@ -177,7 +177,7 @@ const downloadCsv = (rows) => {
|
||||||
@click="downloadCsv(rows)"
|
@click="downloadCsv(rows)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<CardList2
|
<CardList
|
||||||
:add-element="addElement"
|
:add-element="addElement"
|
||||||
:element="row"
|
:element="row"
|
||||||
:id="row.id"
|
:id="row.id"
|
||||||
|
@ -189,7 +189,6 @@ const downloadCsv = (rows) => {
|
||||||
v-for="row of rows"
|
v-for="row of rows"
|
||||||
>
|
>
|
||||||
<template #list-items>
|
<template #list-items>
|
||||||
<VnLv label="ID" :value="row.id" />
|
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('invoiceOut.list.shortIssued')"
|
:label="t('invoiceOut.list.shortIssued')"
|
||||||
:title-label="t('invoiceOut.list.issued')"
|
:title-label="t('invoiceOut.list.issued')"
|
||||||
|
@ -234,7 +233,7 @@ const downloadCsv = (rows) => {
|
||||||
type="submit"
|
type="submit"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</CardList2>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
</VnPaginate>
|
</VnPaginate>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,7 +3,7 @@ import VnPaginate from 'components/ui/VnPaginate.vue';
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { onMounted, onUnmounted } from 'vue';
|
import { onMounted, onUnmounted } from 'vue';
|
||||||
import CardList2 from 'components/ui/CardList2.vue';
|
import CardList from 'components/ui/CardList.vue';
|
||||||
import VnLv from 'components/ui/VnLv.vue';
|
import VnLv from 'components/ui/VnLv.vue';
|
||||||
import { useQuasar } from 'quasar';
|
import { useQuasar } from 'quasar';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
|
@ -71,7 +71,7 @@ function viewSummary(id) {
|
||||||
auto-load
|
auto-load
|
||||||
>
|
>
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<CardList2
|
<CardList
|
||||||
v-for="row of rows"
|
v-for="row of rows"
|
||||||
:key="row.id"
|
:key="row.id"
|
||||||
:id="row.id"
|
:id="row.id"
|
||||||
|
@ -96,22 +96,20 @@ function viewSummary(id) {
|
||||||
@click.stop="navigate(row.id)"
|
@click.stop="navigate(row.id)"
|
||||||
color="white"
|
color="white"
|
||||||
outline
|
outline
|
||||||
type="reset"
|
|
||||||
/>
|
/>
|
||||||
<QBtn
|
<QBtn
|
||||||
:label="t('components.smartCard.openSummary')"
|
:label="t('components.smartCard.openSummary')"
|
||||||
@click.stop="viewSummary(row.id)"
|
@click.stop="viewSummary(row.id)"
|
||||||
color="primary"
|
color="primary"
|
||||||
style="margin-top: 15px"
|
style="margin-top: 15px"
|
||||||
type="submit"
|
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</CardList2>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
</VnPaginate>
|
</VnPaginate>
|
||||||
</div>
|
</div>
|
||||||
<QPageSticky :offset="[20, 20]">
|
<QPageSticky :offset="[20, 20]">
|
||||||
<RouterLink :to="{name: 'ShelvingCreate'}">
|
<RouterLink :to="{ name: 'ShelvingCreate' }">
|
||||||
<QBtn fab icon="add" color="primary" />
|
<QBtn fab icon="add" color="primary" />
|
||||||
<QTooltip>
|
<QTooltip>
|
||||||
{{ t('supplier.list.newSupplier') }}
|
{{ t('supplier.list.newSupplier') }}
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { useStateStore } from 'stores/useStateStore';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
||||||
import CardList2 from 'src/components/ui/CardList2.vue';
|
import CardList from 'src/components/ui/CardList.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import { useQuasar } from 'quasar';
|
import { useQuasar } from 'quasar';
|
||||||
import SupplierSummaryDialog from './Card/SupplierSummaryDialog.vue';
|
import SupplierSummaryDialog from './Card/SupplierSummaryDialog.vue';
|
||||||
|
@ -47,7 +47,7 @@ const viewSummary = (id) => {
|
||||||
<div class="card-list">
|
<div class="card-list">
|
||||||
<VnPaginate data-key="SuppliersList" url="Suppliers/filter" auto-load>
|
<VnPaginate data-key="SuppliersList" url="Suppliers/filter" auto-load>
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<CardList2
|
<CardList
|
||||||
v-for="row of rows"
|
v-for="row of rows"
|
||||||
:key="row.id"
|
:key="row.id"
|
||||||
:title="row.socialName"
|
:title="row.socialName"
|
||||||
|
@ -82,7 +82,7 @@ const viewSummary = (id) => {
|
||||||
color="primary"
|
color="primary"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</CardList2>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
</VnPaginate>
|
</VnPaginate>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -120,11 +120,11 @@ function viewSummary(id) {
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template #actions>
|
<template #actions>
|
||||||
<QBtn flat icon="preview" @click.stop="viewSummary(row.id)">
|
<QBtn
|
||||||
<QTooltip>
|
:label="t('components.smartCard.openSummary')"
|
||||||
{{ t('components.smartCard.openSummary') }}
|
@click.stop="viewSummary(row.id)"
|
||||||
</QTooltip>
|
color="primary"
|
||||||
</QBtn>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</CardList>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { toDate } from 'src/filters/index';
|
||||||
|
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
||||||
import CardList2 from 'src/components/ui/CardList2.vue';
|
import CardList from 'src/components/ui/CardList.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import TravelSummaryDialog from './Card/TravelSummaryDialog.vue';
|
import TravelSummaryDialog from './Card/TravelSummaryDialog.vue';
|
||||||
import { useTravelStore } from 'src/stores/travel.js';
|
import { useTravelStore } from 'src/stores/travel.js';
|
||||||
|
@ -62,7 +62,7 @@ onMounted(async () => {
|
||||||
order="shipped DESC, landed DESC"
|
order="shipped DESC, landed DESC"
|
||||||
>
|
>
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<CardList2
|
<CardList
|
||||||
v-for="row of rows"
|
v-for="row of rows"
|
||||||
:key="row.id"
|
:key="row.id"
|
||||||
:title="row.ref"
|
:title="row.ref"
|
||||||
|
@ -117,7 +117,7 @@ onMounted(async () => {
|
||||||
style="margin-top: 15px"
|
style="margin-top: 15px"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</CardList2>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
</VnPaginate>
|
</VnPaginate>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5,7 +5,7 @@ import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
||||||
import { useArrayData } from 'src/composables/useArrayData';
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import CardList2 from 'components/ui/CardList2.vue';
|
import CardList from 'components/ui/CardList.vue';
|
||||||
import VnLv from 'components/ui/VnLv.vue';
|
import VnLv from 'components/ui/VnLv.vue';
|
||||||
|
|
||||||
const quasar = useQuasar();
|
const quasar = useQuasar();
|
||||||
|
@ -50,7 +50,7 @@ async function remove(row) {
|
||||||
auto-load
|
auto-load
|
||||||
>
|
>
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<CardList2
|
<CardList
|
||||||
v-for="row of rows"
|
v-for="row of rows"
|
||||||
:key="row.id"
|
:key="row.id"
|
||||||
:title="(row.name || '').toString()"
|
:title="(row.name || '').toString()"
|
||||||
|
@ -66,7 +66,6 @@ async function remove(row) {
|
||||||
@click.stop="navigate(row.id)"
|
@click.stop="navigate(row.id)"
|
||||||
color="white"
|
color="white"
|
||||||
outline
|
outline
|
||||||
type="submit"
|
|
||||||
/>
|
/>
|
||||||
<QBtn
|
<QBtn
|
||||||
:label="t('wagon.list.remove')"
|
:label="t('wagon.list.remove')"
|
||||||
|
@ -75,7 +74,7 @@ async function remove(row) {
|
||||||
style="margin-top: 15px"
|
style="margin-top: 15px"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</CardList2>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
</VnPaginate>
|
</VnPaginate>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5,7 +5,7 @@ import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
||||||
import { useArrayData } from 'src/composables/useArrayData';
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import CardList2 from 'components/ui/CardList2.vue';
|
import CardList from 'components/ui/CardList.vue';
|
||||||
import VnLv from 'components/ui/VnLv.vue';
|
import VnLv from 'components/ui/VnLv.vue';
|
||||||
|
|
||||||
const quasar = useQuasar();
|
const quasar = useQuasar();
|
||||||
|
@ -57,7 +57,7 @@ async function remove(row) {
|
||||||
auto-load
|
auto-load
|
||||||
>
|
>
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<CardList2
|
<CardList
|
||||||
v-for="row of rows"
|
v-for="row of rows"
|
||||||
:key="row.id"
|
:key="row.id"
|
||||||
:title="(row.label || '').toString()"
|
:title="(row.label || '').toString()"
|
||||||
|
@ -83,7 +83,6 @@ async function remove(row) {
|
||||||
@click.stop="navigate(row.id)"
|
@click.stop="navigate(row.id)"
|
||||||
color="white"
|
color="white"
|
||||||
outline
|
outline
|
||||||
type="submit"
|
|
||||||
/>
|
/>
|
||||||
<QBtn
|
<QBtn
|
||||||
:label="t('wagon.list.remove')"
|
:label="t('wagon.list.remove')"
|
||||||
|
@ -92,7 +91,7 @@ async function remove(row) {
|
||||||
style="margin-top: 15px"
|
style="margin-top: 15px"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</CardList2>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
</VnPaginate>
|
</VnPaginate>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -85,19 +85,17 @@ function viewSummary(id) {
|
||||||
</template>
|
</template>
|
||||||
<template #actions>
|
<template #actions>
|
||||||
<QBtn
|
<QBtn
|
||||||
flat
|
:label="t('components.smartCard.openCard')"
|
||||||
icon="arrow_circle_right"
|
|
||||||
@click.stop="navigate(row.id)"
|
@click.stop="navigate(row.id)"
|
||||||
>
|
color="white"
|
||||||
<QTooltip>
|
outline
|
||||||
{{ t('components.smartCard.openCard') }}
|
/>
|
||||||
</QTooltip>
|
<QBtn
|
||||||
</QBtn>
|
:label="t('components.smartCard.openSummary')"
|
||||||
<QBtn flat icon="preview" @click.stop="viewSummary(row.id)">
|
@click.stop="viewSummary(row.id)"
|
||||||
<QTooltip>
|
color="primary"
|
||||||
{{ t('components.smartCard.openSummary') }}
|
style="margin-top: 15px"
|
||||||
</QTooltip>
|
/>
|
||||||
</QBtn>
|
|
||||||
</template>
|
</template>
|
||||||
</CardList>
|
</CardList>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue