various improvements on 3party

This commit is contained in:
2021-10-07 17:28:33 +02:00
parent 7ea2c36c5e
commit ca3ced0308
20 changed files with 464 additions and 305 deletions

View File

@@ -1,18 +1,23 @@
<template>
<div class="container">
<span class="name">
{{ item.result.text }}
</span>
<span class="location">
{{ item.result.address.text }} -
<template v-if="item.result.address != null">
{{ item.result.address.text }} -
{{ item.result.address.postcode.name }}
</template>
</span>
</div>
<div class="right_actions">
<span class="badge rounded-pill bg-secondary" :title="item.key">
<span class="badge rounded-pill bg-info" v-if="item.result.isChild">
{{ $t('item.thirdparty_contact')}}
</span>
<span class="badge rounded-pill bg-secondary" :title="item.key">
{{ $t('item.type_thirdparty') }}
</span>
<on-the-fly
@@ -20,7 +25,7 @@
v-bind:id="item.result.id"
action="show">
</on-the-fly>
</div>
</template>