forked from verdnatura/salix-front
refs #6420 change url
This commit is contained in:
parent
c9023449c9
commit
7ef10bb7a9
|
@ -205,17 +205,29 @@ function openDialog(dmsId) {
|
|||
</VnLv>
|
||||
</QCard>
|
||||
<QCard class="vn-one">
|
||||
<a class="header" :href="claimUrl + 'note/index'">
|
||||
<a class="header" :href="`#/claim/${entityId}/notes`">
|
||||
{{ t('claim.summary.notes') }}
|
||||
<QIcon name="open_in_new" color="primary" />
|
||||
</a>
|
||||
<!-- Use VnNotes and maybe VirtualScroll-->
|
||||
</QCard>
|
||||
<QCard class="vn-max" v-if="salesClaimed.length > 0">
|
||||
<a class="header" :href="claimUrl + 'note/index'">
|
||||
<a class="header" :href="`#/claim/${entityId}/notes`">
|
||||
{{ t('claim.summary.details') }}
|
||||
<QIcon name="open_in_new" color="primary" />
|
||||
</a>
|
||||
<q-virtual-scroll
|
||||
:scroll-target="scrollTarget"
|
||||
:items="heavyList"
|
||||
separator
|
||||
v-slot="{ item, index }"
|
||||
>
|
||||
<q-item :key="index" dense>
|
||||
<q-item-section>
|
||||
<q-item-label> #{{ index }} - {{ item.label }} </q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</q-virtual-scroll>
|
||||
<QTable :columns="detailsColumns" :rows="salesClaimed" flat>
|
||||
<template #header="props">
|
||||
<QTr :props="props">
|
||||
|
|
Loading…
Reference in New Issue