mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Address: hideAddress option mask too loading and alerts
This commit is contained in:
parent
0ed2dc8b13
commit
f7ec87e012
@ -1,24 +1,28 @@
|
|||||||
<template>
|
<template>
|
||||||
|
|
||||||
<div class="loading">
|
<div v-if="!hideAddress">
|
||||||
<i v-if="flag.loading" class="fa fa-circle-o-notch fa-spin fa-2x fa-fw"></i>
|
<div class="loading">
|
||||||
<span class="sr-only">{{ $t('loading') }}</span>
|
<i v-if="flag.loading" class="fa fa-circle-o-notch fa-spin fa-2x fa-fw"></i>
|
||||||
</div>
|
<span class="sr-only">{{ $t('loading') }}</span>
|
||||||
<div v-if="errorMsg && errorMsg.length > 0" class="alert alert-danger">
|
</div>
|
||||||
{{ errorMsg }}
|
|
||||||
</div>
|
|
||||||
<div v-if="flag.success" class="alert alert-success">
|
|
||||||
{{ $t(getSuccessText) }}
|
|
||||||
<span v-if="forceRedirect">{{ $t('wait_redirection') }}</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-if="noAddressWithStickyActions" class="mt-5">
|
<div v-if="errorMsg && errorMsg.length > 0" class="alert alert-danger">
|
||||||
<p class="chill-no-data-statement">
|
{{ errorMsg }}
|
||||||
{{ $t('not_yet_address') }}
|
</div>
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<address-render-box v-if="!hideAddress" :address="address"></address-render-box>
|
<div v-if="flag.success" class="alert alert-success">
|
||||||
|
{{ $t(getSuccessText) }}
|
||||||
|
<span v-if="forceRedirect">{{ $t('wait_redirection') }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="noAddressWithStickyActions" class="mt-5">
|
||||||
|
<p class="chill-no-data-statement">
|
||||||
|
{{ $t('not_yet_address') }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<address-render-box :address="address"></address-render-box>
|
||||||
|
</div>
|
||||||
|
|
||||||
<action-buttons
|
<action-buttons
|
||||||
:options="this.options"
|
:options="this.options"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user