fix: deleted duplicate request
gitea/salix-front/pipeline/pr-dev Build queued... Details

This commit is contained in:
Jon Elias 2025-01-17 13:46:26 +01:00
parent 6b3c510057
commit cce3162816
2 changed files with 3 additions and 2 deletions

View File

@ -45,7 +45,6 @@ const $props = defineProps({
});
const vnInputRef = ref(null);
const showPassword = ref(false);
const value = computed({
get() {
return $props.modelValue;
@ -72,6 +71,7 @@ const focus = () => {
defineExpose({
focus,
vnInputRef,
});
const mixinRules = [

View File

@ -272,11 +272,12 @@ const onDenyAccept = (_, responseData) => {
<template #column-achieved="{ row }">
<span>
<VnInput
ref="achievedRef"
type="number"
v-model.number="row.saleQuantity"
:disable="!row.itemFk || row.isOk != null"
@blur="changeQuantity(row)"
@keyup.enter="changeQuantity(row)"
@keyup.enter="$refs.achievedRef.vnInputRef.blur()"
dense
/>
</span>