#8604: TicketFuture to VnTable #1395
|
@ -629,6 +629,7 @@ const checkbox = ref(null);
|
||||||
<template #header-cell="{ col }">
|
<template #header-cell="{ col }">
|
||||||
<QTh
|
<QTh
|
||||||
v-if="col.visible ?? true"
|
v-if="col.visible ?? true"
|
||||||
|
v-bind:class="col.headerClass"
|
||||||
class="body-cell"
|
class="body-cell"
|
||||||
:style="col?.width ? `max-width: ${col?.width}` : ''"
|
:style="col?.width ? `max-width: ${col?.width}` : ''"
|
||||||
style="padding: inherit"
|
style="padding: inherit"
|
||||||
|
|
|
@ -56,7 +56,7 @@ const ticketColumns = computed(() => [
|
||||||
headerClass: 'horizontal-separator',
|
headerClass: 'horizontal-separator',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'center',
|
||||||
label: t('advanceTickets.ipt'),
|
label: t('advanceTickets.ipt'),
|
||||||
name: 'ipt',
|
name: 'ipt',
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
|
@ -106,7 +106,7 @@ const ticketColumns = computed(() => [
|
||||||
label: t('advanceTickets.futureId'),
|
label: t('advanceTickets.futureId'),
|
||||||
name: 'futureId',
|
name: 'futureId',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
headerClass: 'vertical-separator horizontal-separator',
|
headerClass: 'horizontal-separator vertical-separator ',
|
||||||
columnClass: 'vertical-separator',
|
columnClass: 'vertical-separator',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -118,7 +118,7 @@ const ticketColumns = computed(() => [
|
||||||
format: (row) => toDateTimeFormat(row.futureShipped),
|
format: (row) => toDateTimeFormat(row.futureShipped),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'center',
|
||||||
label: t('advanceTickets.futureIpt'),
|
label: t('advanceTickets.futureIpt'),
|
||||||
name: 'futureIpt',
|
name: 'futureIpt',
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
|
@ -250,6 +250,7 @@ watch(
|
||||||
</RightMenu>
|
</RightMenu>
|
||||||
<QPage class="column items-center q-pa-md">
|
<QPage class="column items-center q-pa-md">
|
||||||
<VnTable
|
<VnTable
|
||||||
|
class="bg-header q-pr-xs"
|
||||||
data-key="futureTickets"
|
data-key="futureTickets"
|
||||||
ref="vnTableRef"
|
ref="vnTableRef"
|
||||||
url="Tickets/getTicketsFuture"
|
url="Tickets/getTicketsFuture"
|
||||||
|
@ -437,4 +438,7 @@ watch(
|
||||||
:deep(.horizontal-separator) {
|
:deep(.horizontal-separator) {
|
||||||
border-top: 4px solid white !important;
|
border-top: 4px solid white !important;
|
||||||
}
|
}
|
||||||
|
:deep(.horizontal-bottom-separator) {
|
||||||
|
border-bottom: 4px solid white !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue