0
0
Fork 0

fix: style second row

This commit is contained in:
Javier Segarra 2024-05-09 13:32:03 +02:00
parent 2df0c1eba9
commit a6ec40beb4
1 changed files with 9 additions and 4 deletions

View File

@ -176,8 +176,8 @@ const redirectToOrderSummary = (orderId) => {
<template #body-cell-client="{ row }">
<QTd>
<div class="q-mb-md">
<span class="link">{{ row.salesPerson }}</span>
<WorkerDescriptorProxy :id="row.salesPersonFk" dense />
<span class="link">{{ row.clientName }}</span>
<CustomerDescriptorProxy :id="row.clientFk" />
</div>
<span> {{ row.agencyName }}</span>
</QTd>
@ -185,8 +185,8 @@ const redirectToOrderSummary = (orderId) => {
<template #body-cell-salesPerson="{ row }">
<QTd>
<div class="q-mb-md">
<span class="link">{{ row.clientName }}</span>
<CustomerDescriptorProxy :id="row.clientFk" />
<span class="link">{{ row.salesPerson }}</span>
<WorkerDescriptorProxy :id="row.salesPersonFk" dense />
</div>
<span>{{ toCurrency(row.import) }}</span>
</QTd>
@ -196,3 +196,8 @@ const redirectToOrderSummary = (orderId) => {
</VnPaginate>
</QCard>
</template>
<style lang="scss" scoped>
.q-td {
color: gray;
}
</style>