Reviewed-on: #373 Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
commit
56e63852ed
|
@ -152,6 +152,15 @@ select:-webkit-autofill {
|
||||||
color: var(--vn-label-color);
|
color: var(--vn-label-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disabled {
|
||||||
|
& .q-checkbox__label {
|
||||||
|
color: var(--vn-text-color);
|
||||||
|
}
|
||||||
|
& .q-checkbox__inner {
|
||||||
|
color: var(--vn-label-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.q-chip,
|
.q-chip,
|
||||||
.q-notification__message,
|
.q-notification__message,
|
||||||
.q-notification__icon {
|
.q-notification__icon {
|
||||||
|
|
|
@ -91,7 +91,6 @@ const tableColumnComponents = {
|
||||||
props: (prop) => ({
|
props: (prop) => ({
|
||||||
disable: true,
|
disable: true,
|
||||||
'model-value': prop.value,
|
'model-value': prop.value,
|
||||||
class: 'disabled-checkbox',
|
|
||||||
}),
|
}),
|
||||||
event: () => {},
|
event: () => {},
|
||||||
},
|
},
|
||||||
|
|
|
@ -150,21 +150,19 @@ const downloadCSV = async () => {
|
||||||
>
|
>
|
||||||
<template #body-cell-clientId="{ row }">
|
<template #body-cell-clientId="{ row }">
|
||||||
<QTd>
|
<QTd>
|
||||||
<QBtn flat dense color="blue"> {{ row.clientId }}</QBtn>
|
<QBtn flat dense class="link"> {{ row.clientId }}</QBtn>
|
||||||
<CustomerDescriptorProxy :id="row.clientId" />
|
<CustomerDescriptorProxy :id="row.clientId" />
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-ticketId="{ row }">
|
<template #body-cell-ticketId="{ row }">
|
||||||
<QTd>
|
<QTd>
|
||||||
<QBtn flat dense color="blue"> {{ row.ticketFk }}</QBtn>
|
<QBtn flat dense class="link"> {{ row.ticketFk }}</QBtn>
|
||||||
<TicketDescriptorProxy :id="row.ticketFk" />
|
<TicketDescriptorProxy :id="row.ticketFk" />
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-worker="{ row }">
|
<template #body-cell-worker="{ row }">
|
||||||
<QTd>
|
<QTd>
|
||||||
<QBtn class="no-uppercase" flat dense color="blue">{{
|
<QBtn class="no-uppercase link" flat dense>{{ row.workerName }}</QBtn>
|
||||||
row.workerName
|
|
||||||
}}</QBtn>
|
|
||||||
<WorkerDescriptorProxy :id="row.comercialId" />
|
<WorkerDescriptorProxy :id="row.comercialId" />
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -20,6 +20,7 @@ const props = defineProps({
|
||||||
:data-key="props.dataKey"
|
:data-key="props.dataKey"
|
||||||
:search-button="true"
|
:search-button="true"
|
||||||
:unremovable-params="['from', 'to']"
|
:unremovable-params="['from', 'to']"
|
||||||
|
:hidden-tags="['from', 'to']"
|
||||||
>
|
>
|
||||||
<template #tags="{ tag, formatFn }">
|
<template #tags="{ tag, formatFn }">
|
||||||
<div class="q-gutter-x-xs">
|
<div class="q-gutter-x-xs">
|
||||||
|
|
Loading…
Reference in New Issue