feat: refs #8118 add VnDropdown component and integrate it into Claim and Ticket summaries #1517

Merged
benjaminedc merged 53 commits from 8118-createComponentVnDropdown into dev 2025-03-26 10:32:30 +00:00
2 changed files with 4 additions and 6 deletions
Showing only changes of commit 43701bd586 - Show all commits

View File

@ -1,6 +1,6 @@
<script setup>
import axios from 'axios';
import { ref, computed, onMounted } from 'vue';
import { ref, computed } from 'vue';
benjaminedc marked this conversation as resolved Outdated

onMounted no se usa, quitar

onMounted no se usa, quitar
import { useRoute, useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n';
import { toDate, toCurrency } from 'src/filters';
@ -212,8 +212,7 @@ function claimUrl(section) {
<VnDropdown
:options="claimStates"
option-label="description"
option-value="id"
@change-state="changeState($event)"
@change-state="changeState"
benjaminedc marked this conversation as resolved Outdated

Si usas id no no hace falta pasar la propiedad, utiliza ese por defecto

Si usas id no no hace falta pasar la propiedad, utiliza ese por defecto
/>
</template>
<template #menu="{ entity }">

View File

@ -116,9 +116,8 @@ onMounted(async () => {
<VnDropdown
:disable="!isEditable()"
:options="editableStates"
:option-label="'name'"
:option-value="'code'"
@change-state="changeState($event)"
option-value="code"
benjaminedc marked this conversation as resolved Outdated

no hace falta usar ":" cuando es texto.

no hace falta usar ":" cuando es texto.
@change-state="changeState"
benjaminedc marked this conversation as resolved Outdated

Aquí tenías puesto antes el code, ahora usas el id,, pero el back espera un code.

Aquí tenías puesto antes el code, ahora usas el id,, pero el back espera un code.
/>
benjaminedc marked this conversation as resolved
Review

No hace falta poner $event, con poner changeState es suficiente.

No hace falta poner $event, con poner **changeState** es suficiente.
</template>
<template #menu="{ entity }">