mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
Using thirdparty renderbox to display intervening thirdparties
This commit is contained in:
parent
21e3da0266
commit
534a8bb3af
@ -149,8 +149,6 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div v-else class="flex-table">
|
<div v-else class="flex-table">
|
||||||
<!-- <p>{{ handlingThirdParty.text }}</p>
|
|
||||||
<address-render-box :address="handlingThirdParty.address"></address-render-box> -->
|
|
||||||
<third-party-render-box
|
<third-party-render-box
|
||||||
:thirdparty="handlingThirdParty"
|
:thirdparty="handlingThirdParty"
|
||||||
:options="{
|
:options="{
|
||||||
@ -164,8 +162,7 @@
|
|||||||
}"></third-party-render-box>
|
}"></third-party-render-box>
|
||||||
<ul class="record_actions">
|
<ul class="record_actions">
|
||||||
<li>
|
<li>
|
||||||
<button :title="$t('remove_handling_thirdparty')" class="btn btn-remove"
|
<button :title="$t('remove_handling_thirdparty')" class="btn btn-remove" @click="removeHandlingThirdParty"/>
|
||||||
@click="removeHandlingThirdParty"></button>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@ -180,32 +177,22 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<!-- <div class="flex-bloc mb-3">
|
<div class="flex-bloc mb-3">
|
||||||
<third-party-render-box
|
<third-party-render-box
|
||||||
:v-for="t in thirdParties"
|
v-for="thirdparty in thirdParties"
|
||||||
:thirdparty="t"
|
:key="thirdparty.id"
|
||||||
|
:thirdparty="thirdparty"
|
||||||
:options="{ addLink : false, addId : false, addEntity: true, addInfo: false, hLevel: 3 }"
|
:options="{ addLink : false, addId : false, addEntity: true, addInfo: false, hLevel: 3 }"
|
||||||
>
|
>
|
||||||
<template v-slot:record-actions>
|
<template v-slot:record-actions>
|
||||||
<ul class="record_actions">
|
<ul class="record_actions">
|
||||||
<li><on-the-fly :id="t.id" action="show"></on-the-fly></li>
|
<li>
|
||||||
<li><on-the-fly :id="t.id" action="edit" @saveFormOnTheFly="saveFormOnTheFly"></on-the-fly></li>
|
<button :title="$t('remove_thirdparty')" class="btn btn-remove" @click="removeThirdParty(thirdparty)" />
|
||||||
<li><button class="btn btn-sm btn-remove" :title="$t('action.remove')" @click.prevent="$emit('remove', resource)"></button></li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</template>
|
</template>
|
||||||
</third-party-render-box>
|
</third-party-render-box>
|
||||||
</div> -->
|
</div>
|
||||||
<ul>
|
|
||||||
<li v-for="t in thirdParties">
|
|
||||||
<p>{{ t.text }}</p>
|
|
||||||
<address-render-box :address="t.address"></address-render-box>
|
|
||||||
|
|
||||||
<ul class="record_actions">
|
|
||||||
<button :title="$t('remove_thirdparty')" class="btn btn-remove"
|
|
||||||
@click="removeThirdParty(t)"></button>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul class="record_actions">
|
<ul class="record_actions">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user