fix: fixed CustomerTicket table order
gitea/salix-front/pipeline/pr-master This commit looks good
Details
gitea/salix-front/pipeline/pr-master This commit looks good
Details
This commit is contained in:
parent
9f05984e80
commit
79fdaffbc8
|
@ -49,7 +49,6 @@ const filter = {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
where: { clientFk: $props.id ?? route.params.id },
|
where: { clientFk: $props.id ?? route.params.id },
|
||||||
order: ['shipped DESC', 'id'],
|
|
||||||
limit: 30,
|
limit: 30,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -191,7 +190,7 @@ const getItemPackagingType = (ticketSales) => {
|
||||||
:without-header="true"
|
:without-header="true"
|
||||||
auto-load
|
auto-load
|
||||||
:row-click="rowClick"
|
:row-click="rowClick"
|
||||||
order="shipped DESC, id"
|
order="shipped DESC, id DESC"
|
||||||
:disable-option="{ card: true, table: true }"
|
:disable-option="{ card: true, table: true }"
|
||||||
class="full-width"
|
class="full-width"
|
||||||
:disable-infinite-scroll="true"
|
:disable-infinite-scroll="true"
|
||||||
|
|
Loading…
Reference in New Issue