0
0
Fork 0

feat: customerPayments card view

This commit is contained in:
Alex Moreno 2024-07-16 14:08:03 +02:00
parent 3cd185360b
commit c253959e01
1 changed files with 4 additions and 1 deletions

View File

@ -39,7 +39,7 @@ const columns = computed(() => [
{
name: 'id',
label: t('Transaction ID'),
isId: true,
isTitle: true,
align: 'left',
columnFilter: {
inWhere: true,
@ -59,6 +59,7 @@ const columns = computed(() => [
},
},
columnClass: 'expand',
cardVisible: true,
},
{
name: 'isConfirmed',
@ -76,6 +77,7 @@ const columns = computed(() => [
label: t('Dated'),
format: ({ created }) => toDate(created),
columnFilter: false,
cardVisible: true,
},
{
name: 'amount',
@ -84,6 +86,7 @@ const columns = computed(() => [
columnFilter: {
component: 'number',
},
cardVisible: true,
},
{
align: 'right',