refs #6321 perf: update
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Javier Segarra 2024-03-14 15:26:07 +01:00
parent 79e2bddeea
commit 5326d9db88
2 changed files with 10 additions and 3 deletions

View File

@ -75,7 +75,14 @@ async function onSubmit() {
lazy-rules
:rules="[(val) => (val && val.length > 0) || t('login.fieldRequired')]"
color="primary"
/>
>
<template #prepend>
<QIcon name="outgoing_mail" size="xs"></QIcon>
</template>
<template #append>
<QIcon name="close" size="xs"></QIcon>
</template>
</VnInput>
<VnInput
type="password"
v-model="password"

View File

@ -160,10 +160,10 @@ const columns = computed(() => [
</QTd>
</template>
<template #body-cell-clientFk="{ value }">
<template #body-cell-producer="{ row, value }">
<QTd align="right" class="text-primary">
<QBtn flat color="blue" dense>{{ value }}</QBtn>
<CustomerDescriptorProxy :id="row.itemFk" />
<CustomerDescriptorProxy :id="row.producerFk" />
</QTd>
</template>