- Entri in Circuito Italia solo se hai il fido nel circuito provinciale
- Aggiunta Zona, oltre alla provincia, per visualizzare i vari circuiti della prov
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<div v-if="tools.isUserOk() || noaut">
|
||||
|
||||
<div v-if="circuit">
|
||||
<q-item
|
||||
:class="
|
||||
@@ -108,7 +107,6 @@
|
||||
@click="naviga(tools.getPathByTableAndRec(table, circuit))"
|
||||
lines="1"
|
||||
>
|
||||
|
||||
<CSaldo
|
||||
v-if="tools.isUserOk() && username === myusername() && account"
|
||||
:account="account"
|
||||
@@ -120,36 +118,42 @@
|
||||
</CSaldo>
|
||||
</q-item-label>
|
||||
<q-item-label
|
||||
lines="4"
|
||||
v-if="
|
||||
tools.isUserOk() &&
|
||||
username === myusername() &&
|
||||
!account &&
|
||||
visu !== costanti.ENTER_TO_THE_CIRCUIT
|
||||
"
|
||||
>
|
||||
<div class="centermydiv text-center">
|
||||
<q-banner inline-actions class="bg-blue text-white">
|
||||
<span v-html="$t('circuit.non_entrato')"></span>
|
||||
<template v-slot:action>
|
||||
<q-btn
|
||||
v-if="
|
||||
!userStore.IsMyCircuitByName(circuit.name) &&
|
||||
!userStore.IsAskedCircuitByName(circuit.name) &&
|
||||
!userStore.IsRefusedCircuitByName(circuit.name)
|
||||
"
|
||||
color="positive"
|
||||
:label="$t('circuit.apri')"
|
||||
@click="
|
||||
requestToEnterCircuit = true;
|
||||
groupnameSel = null;
|
||||
"
|
||||
/>
|
||||
</template>
|
||||
</q-banner>
|
||||
</div>
|
||||
</q-item-label>
|
||||
|
||||
lines="4"
|
||||
v-if="
|
||||
tools.isUserOk() &&
|
||||
username === myusername() &&
|
||||
!account &&
|
||||
visu !== costanti.ENTER_TO_THE_CIRCUIT
|
||||
"
|
||||
>
|
||||
<div class="centermydiv text-center">
|
||||
<q-banner
|
||||
v-if="!circuitStore.SonoDentroAdAlmeno1CircuitoConFido()"
|
||||
inline-actions
|
||||
class="bg-blue text-white"
|
||||
>
|
||||
<span v-html="$t('circuit.entra_italia_solo_dopo_aver_fido')"></span>
|
||||
</q-banner>
|
||||
<q-banner v-else inline-actions class="bg-blue text-white">
|
||||
<span v-html="$t('circuit.non_entrato')"></span>
|
||||
<template v-slot:action>
|
||||
<q-btn
|
||||
v-if="
|
||||
!userStore.IsMyCircuitByName(circuit.name) &&
|
||||
!userStore.IsAskedCircuitByName(circuit.name) &&
|
||||
!userStore.IsRefusedCircuitByName(circuit.name)
|
||||
"
|
||||
color="positive"
|
||||
:label="$t('circuit.apri')"
|
||||
@click="
|
||||
requestToEnterCircuit = true;
|
||||
groupnameSel = null;
|
||||
"
|
||||
/>
|
||||
</template>
|
||||
</q-banner>
|
||||
</div>
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
|
||||
<q-item-section
|
||||
|
||||
Reference in New Issue
Block a user