#8604: TicketFuture to VnTable #1395

Merged
jon merged 13 commits from 8604-FixTicketFuture into dev 2025-02-14 12:14:00 +00:00
2 changed files with 8 additions and 3 deletions
Showing only changes of commit 96a04d20b1 - Show all commits

View File

@ -629,6 +629,7 @@ const checkbox = ref(null);
<template #header-cell="{ col }">
<QTh
v-if="col.visible ?? true"
v-bind:class="col.headerClass"
class="body-cell"
:style="col?.width ? `max-width: ${col?.width}` : ''"
style="padding: inherit"

View File

@ -56,7 +56,7 @@ const ticketColumns = computed(() => [
headerClass: 'horizontal-separator',
},
{
align: 'left',
align: 'center',
label: t('advanceTickets.ipt'),
name: 'ipt',
columnFilter: {
@ -106,7 +106,7 @@ const ticketColumns = computed(() => [
label: t('advanceTickets.futureId'),
name: 'futureId',
align: 'center',
headerClass: 'vertical-separator horizontal-separator',
headerClass: 'horizontal-separator vertical-separator ',
columnClass: 'vertical-separator',
},
{
@ -118,7 +118,7 @@ const ticketColumns = computed(() => [
format: (row) => toDateTimeFormat(row.futureShipped),
},
{
align: 'left',
align: 'center',
label: t('advanceTickets.futureIpt'),
name: 'futureIpt',
columnFilter: {
@ -250,6 +250,7 @@ watch(
</RightMenu>
<QPage class="column items-center q-pa-md">
<VnTable
class="bg-header q-pr-xs"
data-key="futureTickets"
ref="vnTableRef"
url="Tickets/getTicketsFuture"
@ -437,4 +438,7 @@ watch(
:deep(.horizontal-separator) {
border-top: 4px solid white !important;
}
:deep(.horizontal-bottom-separator) {
border-bottom: 4px solid white !important;
}
</style>