feat: refs #8118 add VnDropdown component and integrate it into Claim and Ticket summaries #1517
|
@ -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
|
||||
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
jorgep
commented
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 }">
|
||||
|
|
|
@ -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
jorgep
commented
no hace falta usar ":" cuando es texto. no hace falta usar ":" cuando es texto.
|
||||
@change-state="changeState"
|
||||
benjaminedc marked this conversation as resolved
Outdated
jorgep
commented
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
jorgep
commented
No hace falta poner $event, con poner changeState es suficiente. No hace falta poner $event, con poner **changeState** es suficiente.
|
||||
</template>
|
||||
<template #menu="{ entity }">
|
||||
|
|
Loading…
Reference in New Issue
onMounted no se usa, quitar