forked from verdnatura/salix-front
refs #6321 perf change response object
This commit is contained in:
parent
48f88b5871
commit
f56934fcc4
|
@ -69,7 +69,7 @@ export default {
|
||||||
requiredField: 'Required field',
|
requiredField: 'Required field',
|
||||||
class: 'clase',
|
class: 'clase',
|
||||||
type: 'Type',
|
type: 'Type',
|
||||||
reason: 'reason',
|
reason: 'Reason',
|
||||||
noResults: 'No results',
|
noResults: 'No results',
|
||||||
results: 'Results',
|
results: 'Results',
|
||||||
system: 'System',
|
system: 'System',
|
||||||
|
|
|
@ -69,7 +69,7 @@ export default {
|
||||||
requiredField: 'Campo obligatorio',
|
requiredField: 'Campo obligatorio',
|
||||||
class: 'clase',
|
class: 'clase',
|
||||||
type: 'Tipo',
|
type: 'Tipo',
|
||||||
reason: 'motivo',
|
reason: 'Motivo',
|
||||||
noResults: 'Sin resultados',
|
noResults: 'Sin resultados',
|
||||||
system: 'Sistema',
|
system: 'Sistema',
|
||||||
results: 'resultados',
|
results: 'resultados',
|
||||||
|
|
|
@ -260,7 +260,7 @@ defineExpose({ split });
|
||||||
function getIcon(key, prop) {
|
function getIcon(key, prop) {
|
||||||
const ticket = resultSplit.value.find((val) => val.ticketFk === key);
|
const ticket = resultSplit.value.find((val) => val.ticketFk === key);
|
||||||
if (!ticket) return;
|
if (!ticket) return;
|
||||||
const { message } = ticket;
|
const { status } = ticket;
|
||||||
const icons = {
|
const icons = {
|
||||||
split: {
|
split: {
|
||||||
name: 'check_circle',
|
name: 'check_circle',
|
||||||
|
@ -271,7 +271,7 @@ function getIcon(key, prop) {
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
return icons[message][prop];
|
return icons[status][prop];
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -68,7 +68,7 @@ const agencies = ref();
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnInput
|
<VnInput
|
||||||
v-model="params.inkFk"
|
v-model="params.color"
|
||||||
:label="t('ticket.negative.colour')"
|
:label="t('ticket.negative.colour')"
|
||||||
is-outlined
|
is-outlined
|
||||||
/>
|
/>
|
||||||
|
@ -95,7 +95,7 @@ const agencies = ref();
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnInput
|
<VnInput
|
||||||
v-model="params.value"
|
v-model="params.lack"
|
||||||
:label="t('ticket.negative.value')"
|
:label="t('ticket.negative.value')"
|
||||||
is-outlined
|
is-outlined
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -94,7 +94,8 @@ const columns = computed(() => [
|
||||||
<QPage class="column items-center">
|
<QPage class="column items-center">
|
||||||
<VnSubToolbar class="bg-vn-dark justify-end">
|
<VnSubToolbar class="bg-vn-dark justify-end">
|
||||||
<template #st-actions>
|
<template #st-actions>
|
||||||
<div class="flex items-center q-ml-lg">
|
<!-- <div class="flex items-center q-ml-lg" style="column-gap: 1px"> -->
|
||||||
|
<QBtnGroup push style="column-gap: 1px">
|
||||||
<QBtn
|
<QBtn
|
||||||
color="primary"
|
color="primary"
|
||||||
:disable="!selectedRows?.length"
|
:disable="!selectedRows?.length"
|
||||||
|
@ -110,7 +111,8 @@ const columns = computed(() => [
|
||||||
>
|
>
|
||||||
<QTooltip>{{ t('ticket.negative.totalNegative') }}</QTooltip>
|
<QTooltip>{{ t('ticket.negative.totalNegative') }}</QTooltip>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
</div>
|
</QBtnGroup>
|
||||||
|
<!-- </div> -->
|
||||||
</template>
|
</template>
|
||||||
</VnSubToolbar>
|
</VnSubToolbar>
|
||||||
<div class="list">
|
<div class="list">
|
||||||
|
@ -232,4 +234,10 @@ const columns = computed(() => [
|
||||||
div.q-dialog__inner > div {
|
div.q-dialog__inner > div {
|
||||||
max-width: fit-content !important;
|
max-width: fit-content !important;
|
||||||
}
|
}
|
||||||
|
.q-btn-group > .q-btn-item:not(:first-child) {
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
// border-top-right-radius: 0;
|
||||||
|
// border-bottom-right-radius: 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue