feat: refs #8118 add VnDropdown component and integrate it into Claim and Ticket summaries #1517
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix-front#1517
Loading…
Reference in New Issue
No description provided.
Delete Branch "8118-createComponentVnDropdown"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +11,4 @@
type: Boolean,
default: null,
},
moduleName: {
No usar moduleName , optionLabel
@ -0,0 +39,4 @@
:options="$props.options"
hide-selected
option-value="code"
hide-dropdown-icon
añadir:
:option-label="optionLabel"
, se puede hacer directamente :option-label si se llama igual la variable que quieres pasar, pero al ser camelCase no sé si funciona.@ -0,0 +18,4 @@
options: {
type: Array,
default: null,
},
añadir también optionValue, tiene que ser flexible, puede que no se quiera usar siempre code, si quieres ponerlo como opción por defecto vale.
@ -173,3 +174,3 @@
async function changeState(value) {
await axios.patch(`Claims/updateClaim/${entityId.value}`, { claimStateFk: value });
const newState = claimStates.value.find((state) => state.code == value);
Si en VnDropdown, creas la prop optionValue y le dices que use id , ya no te hace falta hacer un find para encontrar el id.
@ -0,0 +48,4 @@
focus-on-mount
@update:model-value="changeState"
>
<template #option="scope">
Este template es el que tiene por defecto VnSelect, no hace falta que lo añadas aquí.
@ -181,2 +184,4 @@
return '#/claim/' + entityId.value + '/' + section;
}
onMounted(async () => {
Pasar a fetchData y obtener solo los campos que necesitas(id y name)
@ -135,0 +117,4 @@
:moduleId="entityId"
:options="editableStates"
:disable="!isEditable()"
@change-state="changeState($event)"
Aquí tenías puesto antes el code, ahora usas el id,, pero el back espera un code.
@ -1,6 +1,6 @@
<script setup>
import axios from 'axios';
import { ref, computed } from 'vue';
import { ref, computed, onMounted } from 'vue';
onMounted no se usa, quitar
@ -232,0 +212,4 @@
<VnDropdown
:options="claimStates"
option-label="description"
option-value="id"
Si usas id no no hace falta pasar la propiedad, utiliza ese por defecto
@ -135,0 +116,4 @@
<VnDropdown
:disable="!isEditable()"
:options="editableStates"
:option-label="'name'"
no hace falta usar ":" cuando es texto.
@ -135,0 +118,4 @@
:options="editableStates"
:option-label="'name'"
:option-value="'code'"
@change-state="changeState($event)"
No hace falta poner $event, con poner changeState es suficiente.
@benjaminedc Crea una noticia en redmine con la creación de este componente. y avisa por rocket.