forked from verdnatura/salix-front
parent
8c13ceb3fe
commit
68ebda625b
|
@ -240,39 +240,33 @@ function handleLocation(data, location) {
|
||||||
class="row q-gutter-md q-mb-md"
|
class="row q-gutter-md q-mb-md"
|
||||||
v-for="(note, index) in notes"
|
v-for="(note, index) in notes"
|
||||||
>
|
>
|
||||||
<div class="col">
|
<VnSelect
|
||||||
<VnSelect
|
:label="t('Observation type')"
|
||||||
:label="t('Observation type')"
|
:options="observationTypes"
|
||||||
:options="observationTypes"
|
hide-selected
|
||||||
hide-selected
|
option-label="description"
|
||||||
option-label="description"
|
option-value="id"
|
||||||
option-value="id"
|
v-model="note.observationTypeFk"
|
||||||
v-model="note.observationTypeFk"
|
/>
|
||||||
/>
|
<VnInput
|
||||||
</div>
|
:label="t('Description')"
|
||||||
<div class="col">
|
:rules="validate('route.description')"
|
||||||
<VnInput
|
clearable
|
||||||
:label="t('Description')"
|
v-model="note.description"
|
||||||
:rules="validate('route.description')"
|
/>
|
||||||
clearable
|
<QIcon
|
||||||
v-model="note.description"
|
:style="{ flex: 0, 'align-self': $q.screen.gt.xs ? 'end' : 'center' }"
|
||||||
/>
|
@click.stop="deleteNote(note.id, index)"
|
||||||
</div>
|
class="cursor-pointer"
|
||||||
<div class="flex items-center">
|
color="primary"
|
||||||
<QIcon
|
name="delete"
|
||||||
@click.stop="deleteNote(note.id, index)"
|
size="sm"
|
||||||
class="cursor-pointer"
|
>
|
||||||
color="primary"
|
<QTooltip>
|
||||||
name="delete"
|
{{ t('Remove note') }}
|
||||||
size="sm"
|
</QTooltip>
|
||||||
>
|
</QIcon>
|
||||||
<QTooltip>
|
|
||||||
{{ t('Remove note') }}
|
|
||||||
</QTooltip>
|
|
||||||
</QIcon>
|
|
||||||
</div>
|
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
||||||
<QBtn
|
<QBtn
|
||||||
@click.stop="addNote()"
|
@click.stop="addNote()"
|
||||||
class="cursor-pointer add-icon q-mt-md"
|
class="cursor-pointer add-icon q-mt-md"
|
||||||
|
|
Loading…
Reference in New Issue