fix: refs #7129 some style issues

This commit is contained in:
Pablo Natek 2024-09-24 12:54:34 +02:00
parent c400929c99
commit 70d640dc37
4 changed files with 6 additions and 10 deletions

View File

@ -167,8 +167,8 @@ const setTicketsRoute = async () => {
<QTd :props="props"> <QTd :props="props">
<span class="link"> <span class="link">
{{ props.value }} {{ props.value }}
<TicketDescriptorProxy :id="props?.row?.id" />
</span> </span>
<TicketDescriptorProxy :id="props?.row?.id" />
</QTd> </QTd>
</template> </template>
<template #body-cell-client="props"> <template #body-cell-client="props">

View File

@ -46,7 +46,7 @@ const columns = computed(() => [
}, },
{ {
align: 'left', align: 'left',
name: 'agencyModeName', name: 'agencyName',
label: t('Agency'), label: t('Agency'),
cardVisible: true, cardVisible: true,
create: true, create: true,
@ -124,7 +124,6 @@ const columns = computed(() => [
:right-search="false" :right-search="false"
:filter="routeFilter" :filter="routeFilter"
redirect="route" redirect="route"
:row-click="false"
:create="{ :create="{
urlCreate: 'Routes', urlCreate: 'Routes',
title: t('Create route'), title: t('Create route'),

View File

@ -87,7 +87,7 @@ const columns = computed(() => [
actions: [ actions: [
{ {
title: t('Ver cmr'), title: t('Ver cmr'),
icon: 'visibility', icon: 'preview',
isPrimary: true, isPrimary: true,
action: (row) => viewSummary(row?.id, RoadmapSummary), action: (row) => viewSummary(row?.id, RoadmapSummary),
}, },

View File

@ -342,10 +342,7 @@ const openSmsDialog = async () => {
</template> </template>
<template #body-cell-city="{ value, row }"> <template #body-cell-city="{ value, row }">
<QTd auto-width> <QTd auto-width>
<span <span class="link" @click="goToBuscaman(row)">
class="text-primary cursor-pointer"
@click="goToBuscaman(row)"
>
{{ value }} {{ value }}
<QTooltip>{{ t('Open buscaman') }}</QTooltip> <QTooltip>{{ t('Open buscaman') }}</QTooltip>
</span> </span>
@ -353,7 +350,7 @@ const openSmsDialog = async () => {
</template> </template>
<template #body-cell-client="{ value, row }"> <template #body-cell-client="{ value, row }">
<QTd auto-width> <QTd auto-width>
<span class="text-primary cursor-pointer"> <span class="link">
{{ value }} {{ value }}
<CustomerDescriptorProxy :id="row?.clientFk" /> <CustomerDescriptorProxy :id="row?.clientFk" />
</span> </span>
@ -361,7 +358,7 @@ const openSmsDialog = async () => {
</template> </template>
<template #body-cell-ticket="{ value, row }"> <template #body-cell-ticket="{ value, row }">
<QTd auto-width class="text-center"> <QTd auto-width class="text-center">
<span class="text-primary cursor-pointer"> <span class="link">
{{ value }} {{ value }}
<TicketDescriptorProxy :id="row?.id" /> <TicketDescriptorProxy :id="row?.id" />
</span> </span>