forked from verdnatura/salix-front
feat: customerPayments card view
This commit is contained in:
parent
3cd185360b
commit
c253959e01
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue