-Poter entrare nel login anche con l'username Telegram !
- Se clicchi sulla foto, mi apre il profilo anzichè l'invio dei RIS - ++ Filtro sulle ricerche: Scegliere un Circuito specifico. - Nella lista iscritti compaiono anche i cancellati... - n "Attività" si vede tutto allargato, non sta nella dimensione della pagina. - Nelle notifiche della campanellina non si vede più il titolo... (è vuoto). - Non funziona il Filtro per Settore (nella Home sugli Eventi) - Filtri avanzati da mostrare solo se clicco sul bottone. - I menu in basso non funzionano ! - Nel menu "Iscritti" del circuito, non compare più la ricerca ! Riattivarla - Opzione di mandare una email quando uno si registra al Circuito - ++ Opzione per il Circuito: Chiedi di entrare agli admin (e non in automatico).
This commit is contained in:
@@ -47,10 +47,10 @@ export default defineComponent({
|
||||
label: 'Condividi il tuo Link',
|
||||
value: 'link',
|
||||
},
|
||||
{
|
||||
/*{
|
||||
label: 'Rendi visibile il tuo profilo per 8 ore',
|
||||
value: 'showonlist',
|
||||
},
|
||||
},*/
|
||||
{
|
||||
label: 'Genera il QR Code',
|
||||
value: 'qrcode',
|
||||
@@ -105,6 +105,21 @@ export default defineComponent({
|
||||
qtyRIS.value = qtyRIS.value.replace(',', '.')
|
||||
}
|
||||
|
||||
function clickInviaRIS() {
|
||||
showSendCoin.value = !showSendCoin.value
|
||||
if (showSendCoin.value)
|
||||
showReceiveCoin.value = !showSendCoin.value
|
||||
}
|
||||
|
||||
async function clickriceviRIS() {
|
||||
|
||||
showReceiveCoin.value = !showReceiveCoin.value;
|
||||
if (showReceiveCoin.value)
|
||||
showSendCoin.value = !showReceiveCoin.value
|
||||
if (showReceiveCoin.value)
|
||||
clickAddtoRecList();
|
||||
}
|
||||
|
||||
async function clickAddtoRecList() {
|
||||
const risultato = await tools.addToTemporaryReceiverRIS(t)
|
||||
if (risultato) {
|
||||
@@ -140,6 +155,8 @@ export default defineComponent({
|
||||
showonreclist,
|
||||
riscallrec,
|
||||
clickAddtoRecList,
|
||||
clickInviaRIS,
|
||||
clickriceviRIS,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -10,10 +10,8 @@
|
||||
size="md"
|
||||
rounded
|
||||
:label="$t('circuit.sendcoins_toso')"
|
||||
@click="
|
||||
showSendCoin = !showSendCoin;
|
||||
showSendCoin ? (showReceiveCoin = false) : null;
|
||||
"
|
||||
@click="clickInviaRIS"
|
||||
:push="showSendCoin"
|
||||
>
|
||||
</q-btn>
|
||||
|
||||
@@ -23,10 +21,8 @@
|
||||
size="md"
|
||||
rounded
|
||||
:label="$t('circuit.receive_coins')"
|
||||
@click="
|
||||
showReceiveCoin = !showReceiveCoin;
|
||||
showReceiveCoin ? (showSendCoin = false) : null;
|
||||
"
|
||||
@click="clickriceviRIS"
|
||||
:push="showReceiveCoin"
|
||||
>
|
||||
</q-btn>
|
||||
|
||||
@@ -42,6 +38,16 @@
|
||||
:small="true"
|
||||
:open="true"
|
||||
>
|
||||
<q-banner
|
||||
v-show="riscallrec"
|
||||
rounded
|
||||
class="bg-blue text-white"
|
||||
style="text-align: center"
|
||||
>
|
||||
{{ riscallrec }}
|
||||
<br />
|
||||
</q-banner>
|
||||
|
||||
<q-option-group
|
||||
class="q-ma-xs"
|
||||
style="text-align: left !important"
|
||||
@@ -52,6 +58,7 @@
|
||||
<q-tab-panels
|
||||
v-model="receiveType"
|
||||
animated
|
||||
keep-alive
|
||||
class="shadow-2 rounded-borders"
|
||||
>
|
||||
<q-tab-panel name="link">
|
||||
@@ -105,7 +112,7 @@
|
||||
</CCopyBtnSmall>
|
||||
</q-tab-panel>
|
||||
<q-tab-panel name="showonlist">
|
||||
<q-btn
|
||||
<!--<q-btn
|
||||
v-if="!showonreclist"
|
||||
icon="fas fa-upload"
|
||||
color="positive"
|
||||
@@ -114,22 +121,16 @@
|
||||
:label="$t('circuit.addtothereceiverlist')"
|
||||
@click="clickAddtoRecList"
|
||||
>
|
||||
</q-btn>
|
||||
</q-btn>-->
|
||||
|
||||
<q-slide-transition>
|
||||
<q-banner
|
||||
v-show="riscallrec"
|
||||
rounded
|
||||
class="bg-blue text-white"
|
||||
style="text-align: center"
|
||||
>
|
||||
{{ riscallrec }}
|
||||
<br />
|
||||
</q-banner>
|
||||
</q-slide-transition>
|
||||
<q-slide-transition> </q-slide-transition>
|
||||
</q-tab-panel>
|
||||
<q-tab-panel name="qrcode">
|
||||
<CQRCode :read="false" textlink="Link Profilo" :link="userStore.getLinkProfileAndRIS('', '', '')"></CQRCode>
|
||||
<CQRCode
|
||||
:read="false"
|
||||
textlink="Link Profilo"
|
||||
:link="userStore.getLinkProfileAndRIS('', '', '')"
|
||||
></CQRCode>
|
||||
</q-tab-panel>
|
||||
</q-tab-panels>
|
||||
</CTitleBanner>
|
||||
|
||||
Reference in New Issue
Block a user