- risolto problema della non attesa della PWA durante la chiamata a Node.js.
- risolto problema dell'ambiente in Locale HTTPS certificato installato aggiornato.
This commit is contained in:
@@ -38,13 +38,13 @@ export default defineComponent({
|
||||
const globalStore = useGlobalStore()
|
||||
const userStore = useUserStore()
|
||||
|
||||
const NUMSEC_TO_POLLING = ref(60)
|
||||
// const NUMSEC_TO_POLLING = ref(60)
|
||||
const MAXNUM_POLLING = ref(1000)
|
||||
|
||||
const myloadingload = ref(false)
|
||||
const eseguipolling = ref(false)
|
||||
const polling = ref(<any>null)
|
||||
const numpolled = ref(0)
|
||||
// const numpolled = ref(0)
|
||||
|
||||
const mytab = ref('reg')
|
||||
|
||||
@@ -127,7 +127,8 @@ export default defineComponent({
|
||||
|
||||
if (eseguipolling.value) {
|
||||
beforeDestroy()
|
||||
if (numpolled.value > 200) {
|
||||
|
||||
/*if (numpolled.value > 200) {
|
||||
NUMSEC_TO_POLLING.value = 60 * 5
|
||||
}
|
||||
if (numpolled.value < MAXNUM_POLLING.value) {
|
||||
@@ -137,7 +138,7 @@ export default defineComponent({
|
||||
numpolled.value++
|
||||
}, NUMSEC_TO_POLLING.value * 1000)
|
||||
}
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,83 +1,32 @@
|
||||
<template>
|
||||
<div>
|
||||
<div v-if="visustat">
|
||||
<CTitleBanner
|
||||
class="q-pa-xs"
|
||||
:title="$t('pages.status')"
|
||||
bgcolor="bg-primary"
|
||||
clcolor="text-white"
|
||||
mystyle=""
|
||||
myclass="sfondo_gradiente_blu myshad"
|
||||
:canopen="true"
|
||||
>
|
||||
<CTitleBanner class="q-pa-xs" :title="$t('pages.status')" bgcolor="bg-primary" clcolor="text-white" mystyle=""
|
||||
myclass="sfondo_gradiente_blu myshad" :canopen="true">
|
||||
<div class="flex flex-center">
|
||||
<CElemStat
|
||||
myclass="fixed-size"
|
||||
:title="$t('statusreg.reg')"
|
||||
icon="fas fa-users"
|
||||
:value_today="datastat.num_reg_today"
|
||||
:mytextval="
|
||||
datastat.activeusers + ' su ' + tools.numtostr(datastat.num_reg)
|
||||
"
|
||||
classColor="text-red"
|
||||
colBack="green"
|
||||
>
|
||||
<CElemStat myclass="fixed-size" :title="$t('statusreg.reg')" icon="fas fa-users"
|
||||
:value_today="datastat.num_reg_today" :mytextval="datastat.activeusers + ' su ' + tools.numtostr(datastat.num_reg)
|
||||
" classColor="text-red" colBack="green">
|
||||
</CElemStat>
|
||||
<CElemStat
|
||||
v-if="true"
|
||||
myclass="fixed-size"
|
||||
:title="$t('statusreg.online_today')"
|
||||
icon="fas fa-wifi"
|
||||
:mytextval="tools.numtostr(datastat.online_today)"
|
||||
classColor="text-orange"
|
||||
colBack="yellow"
|
||||
>
|
||||
<CElemStat v-if="true" myclass="fixed-size" :title="$t('statusreg.online_today')" icon="fas fa-wifi"
|
||||
:mytextval="tools.numtostr(datastat.online_today)" classColor="text-orange" colBack="yellow">
|
||||
</CElemStat>
|
||||
<CElemStat
|
||||
myclass="fixed-size"
|
||||
v-f="datastat.num_annunci > 0"
|
||||
:title="$t('statusreg.num_annunci')"
|
||||
icon="fas fa-tshirt"
|
||||
:value_today="0"
|
||||
:mytextval="tools.numtostr(datastat.num_annunci)"
|
||||
classColor="text-green"
|
||||
colBack="orange"
|
||||
>
|
||||
<CElemStat myclass="fixed-size" v-f="datastat.num_annunci > 0" :title="$t('statusreg.num_annunci')"
|
||||
icon="fas fa-tshirt" :value_today="0" :mytextval="tools.numtostr(datastat.num_annunci)"
|
||||
classColor="text-green" colBack="orange">
|
||||
</CElemStat>
|
||||
<CElemStat
|
||||
myclass="fixed-size"
|
||||
v-f="datastat.num_circuiti_attivi > 0"
|
||||
:title="$t('statusreg.num_circuiti_attivi')"
|
||||
icon="fas fa-map-marker-alt"
|
||||
:value_today="0"
|
||||
:mytextval="
|
||||
datastat.num_circuiti_attivi + ' su ' + datastat.num_circuiti
|
||||
"
|
||||
classColor="text-blue"
|
||||
colBack="red"
|
||||
>
|
||||
<CElemStat myclass="fixed-size" v-f="datastat.num_circuiti_attivi > 0"
|
||||
:title="$t('statusreg.num_circuiti_attivi')" icon="fas fa-map-marker-alt" :value_today="0" :mytextval="datastat.num_circuiti_attivi + ' su ' + datastat.num_circuiti
|
||||
" classColor="text-blue" colBack="red">
|
||||
</CElemStat>
|
||||
<CElemStat
|
||||
myclass="fixed-size"
|
||||
v-f="datastat.num_transaz_tot > 0"
|
||||
:title="$t('statusreg.numtransazioni')"
|
||||
icon="fas fa-sync-alt"
|
||||
:value_today="0"
|
||||
:mytextval="tools.numtostr(datastat.num_transaz_tot)"
|
||||
classColor="text-indigo"
|
||||
colBack="green"
|
||||
>
|
||||
<CElemStat myclass="fixed-size" v-f="datastat.num_transaz_tot > 0" :title="$t('statusreg.numtransazioni')"
|
||||
icon="fas fa-sync-alt" :value_today="0" :mytextval="tools.numtostr(datastat.num_transaz_tot)"
|
||||
classColor="text-indigo" colBack="green">
|
||||
</CElemStat>
|
||||
<CElemStat
|
||||
myclass="fixed-size"
|
||||
v-f="datastat.tot_RIS_transati > 0"
|
||||
:title="$t('statusreg.totristransati')"
|
||||
icon="img: /images/1ris_rosso_100.png"
|
||||
:value_today="0"
|
||||
:mytextval="tools.numtostr(datastat.tot_RIS_transati) + ' RIS'"
|
||||
classColor="text-blueviolet"
|
||||
colBack="green"
|
||||
>
|
||||
<CElemStat myclass="fixed-size" v-f="datastat.tot_RIS_transati > 0" :title="$t('statusreg.totristransati')"
|
||||
icon="img: /images/1ris_rosso_100.png" :value_today="0"
|
||||
:mytextval="tools.numtostr(datastat.tot_RIS_transati) + ' RIS'" classColor="text-blueviolet"
|
||||
colBack="green">
|
||||
</CElemStat>
|
||||
|
||||
<!--<CCardState :mytext="$t('statusreg.autorizzare')" :myval="datastat.num_autorizzare"
|
||||
@@ -85,10 +34,7 @@
|
||||
-->
|
||||
|
||||
<div class="q-pa-xs" v-if="datastat.num_part_accepted > 1">
|
||||
<CCardStat
|
||||
:mytext="$t('stat.accepted')"
|
||||
:myval="datastat.num_part_accepted"
|
||||
></CCardStat>
|
||||
<CCardStat :mytext="$t('stat.accepted')" :myval="datastat.num_part_accepted"></CCardStat>
|
||||
<!--<CCardStat :mytext="$t('stat.modalita_pagamento')"
|
||||
:myval="datastat.num_modalita_pagamento"></CCardStat>-->
|
||||
<!--<CCardStat :mytext="$t('stat.requisiti')" :myval="datastat.num_requisiti"></CCardStat>-->
|
||||
@@ -103,69 +49,46 @@
|
||||
</div>
|
||||
|
||||
<q-list bordered>
|
||||
<q-expansion-item
|
||||
group="somegroup"
|
||||
icon="fas fa-user-plus"
|
||||
:label="$t('statusreg.newreg')"
|
||||
default-opened
|
||||
header-class="text-primary"
|
||||
>
|
||||
<q-expansion-item group="somegroup" icon="fas fa-user-plus" :label="$t('statusreg.newreg')" default-opened
|
||||
header-class="text-primary">
|
||||
<q-card>
|
||||
<q-card-section>
|
||||
<div class="q-pa-md" style="max-width: 350px; margin: auto">
|
||||
<transition-group
|
||||
name="fade"
|
||||
mode="out-in"
|
||||
appear
|
||||
enter-active-class="animazione fadeIn"
|
||||
leave-active-class="animazione fadeOut"
|
||||
>
|
||||
<q-item
|
||||
v-for="(user, index) in lastsreg"
|
||||
:key="index"
|
||||
class="animated chip_shadow q-ma-sm"
|
||||
v-ripple
|
||||
clickable
|
||||
@click="gotoPage(`/my/${user.username}`)"
|
||||
>
|
||||
<transition-group name="fade" mode="out-in" appear enter-active-class="animazione fadeIn"
|
||||
leave-active-class="animazione fadeOut">
|
||||
<q-item v-for="(user, index) in lastsreg" :key="index" class="animated chip_shadow q-ma-sm"
|
||||
v-ripple clickable @click="gotoPage(`/my/${user.username}`)">
|
||||
<q-item-section avatar>
|
||||
<q-avatar round size="48px">
|
||||
<img :src="userStore.getImgByProfile(user)" />
|
||||
<q-badge
|
||||
v-if="tools.isUserOnline(user)"
|
||||
align="top"
|
||||
floating
|
||||
color="green"
|
||||
>online</q-badge
|
||||
>
|
||||
<q-badge v-if="tools.isUserOnline(user)" align="top" floating color="green">online</q-badge>
|
||||
</q-avatar>
|
||||
</q-item-section>
|
||||
<q-item-section class="">
|
||||
<q-item-label>
|
||||
{{
|
||||
tools.getNameToShow(user, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
}}
|
||||
</q-item-label>
|
||||
<q-item-label caption>{{
|
||||
tools.getUserNameOnlyIfToShow(user, null, {
|
||||
<span v-html="tools.getNameToShow(user, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
}}</q-item-label>
|
||||
"></span>
|
||||
</q-item-label>
|
||||
<q-item-label caption>
|
||||
<span v-html="tools.getUserNameOnlyIfToShow(user, null, {
|
||||
showprov: false,
|
||||
html: true,
|
||||
})"></span>
|
||||
</q-item-label>
|
||||
<q-item-label class="iscritto_da">
|
||||
{{ t("statusreg.invite_by") }}:
|
||||
<span class="iscritto_da_name">{{
|
||||
tools.getNameToShow(user.user_aportador)
|
||||
}}</span>
|
||||
}}</span>
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
<q-item-section side>
|
||||
<q-item-label style="color: white">{{
|
||||
tools.getstrshortDate(user.date_reg)
|
||||
}}</q-item-label>
|
||||
}}</q-item-label>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</transition-group>
|
||||
@@ -176,13 +99,8 @@
|
||||
|
||||
<q-separator />
|
||||
|
||||
<q-expansion-item
|
||||
expand-separator
|
||||
group="somegroup"
|
||||
icon="fas fa-medal"
|
||||
:label="$t('statusreg.lastsharedlink')"
|
||||
header-class="text-purple"
|
||||
>
|
||||
<q-expansion-item expand-separator group="somegroup" icon="fas fa-medal"
|
||||
:label="$t('statusreg.lastsharedlink')" header-class="text-purple">
|
||||
<div>
|
||||
<div class="text-center text-bold text-h6">Unisciti a RISO</div>
|
||||
<div class="text-center">
|
||||
@@ -192,112 +110,75 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<q-item
|
||||
v-for="(user, index) in lastssharedlink"
|
||||
:key="index"
|
||||
class="animated chip_shadow q-ma-sm"
|
||||
clickable
|
||||
v-ripple
|
||||
@click="gotoPage(`/registrati/${user.user_aportador.username}`)"
|
||||
>
|
||||
<q-item v-for="(user, index) in lastssharedlink" :key="index" class="animated chip_shadow q-ma-sm"
|
||||
clickable v-ripple @click="gotoPage(`/registrati/${user.user_aportador.username}`)">
|
||||
<q-item-section avatar>
|
||||
<q-avatar round size="48px">
|
||||
<img
|
||||
:src="userStore.getImgByProfile(user.user_aportador)"
|
||||
/>
|
||||
<img :src="userStore.getImgByProfile(user.user_aportador)" />
|
||||
</q-avatar>
|
||||
</q-item-section>
|
||||
<q-item-section class="">
|
||||
<q-item-label>
|
||||
{{
|
||||
tools.getNameToShow(user.user_aportador, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
}}
|
||||
</q-item-label>
|
||||
<q-item-label caption>{{
|
||||
tools.getUserNameOnlyIfToShow(user.user_aportador, null, {
|
||||
<span v-html="tools.getNameToShow(user.user_aportador, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
}}</q-item-label>
|
||||
"></span>
|
||||
</q-item-label>
|
||||
<q-item-label caption>
|
||||
<span v-html="tools.getUserNameOnlyIfToShow(user.user_aportador, null, {
|
||||
showprov: false,
|
||||
html: true,
|
||||
})">
|
||||
</span></q-item-label>
|
||||
<q-item-label class="iscritto_da">
|
||||
{{ t("statusreg.has_invited") }}:
|
||||
<span class="iscritto_da_name">{{
|
||||
tools.getNameToShow(user)
|
||||
}}</span>
|
||||
}}</span>
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
<q-item-section side
|
||||
><span class="text-h6 q-mr-sm"></span
|
||||
></q-item-section>
|
||||
<q-item-section side><span class="text-h6 q-mr-sm"></span></q-item-section>
|
||||
</q-item>
|
||||
</q-expansion-item>
|
||||
|
||||
<q-expansion-item
|
||||
group="somegroup"
|
||||
icon="fas fa-wifi"
|
||||
:label="
|
||||
$t('statusreg.onlineusers', { today: datastat.online_today })
|
||||
"
|
||||
header-class="text-teal"
|
||||
>
|
||||
<q-expansion-item group="somegroup" icon="fas fa-wifi" :label="$t('statusreg.onlineusers', { today: datastat.online_today })
|
||||
" header-class="text-teal">
|
||||
<q-card>
|
||||
<q-card-section>
|
||||
<div class="q-pa-md" style="max-width: 350px; margin: auto">
|
||||
<q-list bordered>
|
||||
<transition-group
|
||||
name="fade"
|
||||
mode="out-in"
|
||||
appear
|
||||
enter-active-class="animazione fadeIn"
|
||||
leave-active-class="animazione fadeOut"
|
||||
>
|
||||
<q-item
|
||||
v-for="(user, index) in lastsonline"
|
||||
:key="index"
|
||||
class="animated chip_shadow q-ma-sm"
|
||||
clickable
|
||||
v-ripple
|
||||
@click="gotoPage(`/my/${user.username}`)"
|
||||
>
|
||||
<transition-group name="fade" mode="out-in" appear enter-active-class="animazione fadeIn"
|
||||
leave-active-class="animazione fadeOut">
|
||||
<q-item v-for="(user, index) in lastsonline" :key="index" class="animated chip_shadow q-ma-sm"
|
||||
clickable v-ripple @click="gotoPage(`/my/${user.username}`)">
|
||||
<q-item-section avatar>
|
||||
<q-avatar round size="48px">
|
||||
<img :src="userStore.getImgByProfile(user)" />
|
||||
<q-badge
|
||||
v-if="tools.isUserOnline(user)"
|
||||
align="top"
|
||||
floating
|
||||
color="green"
|
||||
>online</q-badge
|
||||
>
|
||||
<q-badge v-if="tools.isUserOnline(user)" align="top" floating
|
||||
color="green">online</q-badge>
|
||||
</q-avatar>
|
||||
</q-item-section>
|
||||
<q-item-section class="">
|
||||
<q-item-label
|
||||
>{{
|
||||
tools.getNameToShow(user, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
}}
|
||||
<q-item-label>
|
||||
<span v-html="tools.getNameToShow(user, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
"></span>
|
||||
</q-item-label>
|
||||
<q-item-label caption>{{
|
||||
tools.getUserNameOnlyIfToShow(user, null, {
|
||||
showprov: true,
|
||||
showprov: false,
|
||||
html: true,
|
||||
})
|
||||
}}</q-item-label>
|
||||
</q-item-section>
|
||||
<q-item-section side>
|
||||
<div
|
||||
:class="
|
||||
`text-h6 q-mr-sm text-bold ` + $q.dark.isActive
|
||||
? `text-white`
|
||||
: `text-black`
|
||||
"
|
||||
>
|
||||
<div :class="`text-h6 q-mr-sm text-bold ` + $q.dark.isActive
|
||||
? `text-white`
|
||||
: `text-black`
|
||||
">
|
||||
<CTimeAgo :datetime="user.lasttimeonline" />
|
||||
</div>
|
||||
</q-item-section>
|
||||
@@ -311,14 +192,8 @@
|
||||
|
||||
<q-separator />
|
||||
|
||||
<q-expansion-item
|
||||
v-if="false"
|
||||
expand-separator
|
||||
group="somegroup"
|
||||
icon="fas fa-medal"
|
||||
:label="$t('statusreg.diffusori')"
|
||||
header-class="text-purple"
|
||||
>
|
||||
<q-expansion-item v-if="false" expand-separator group="somegroup" icon="fas fa-medal"
|
||||
:label="$t('statusreg.diffusori')" header-class="text-purple">
|
||||
<q-card>
|
||||
<q-card-section>
|
||||
<div class="q-pa-md" style="max-width: 350px; margin: auto">
|
||||
@@ -330,31 +205,15 @@
|
||||
alla RETE Solidale di RISO.
|
||||
</div>
|
||||
<q-list bordered>
|
||||
<transition-group
|
||||
name="fade"
|
||||
mode="out-in"
|
||||
appear
|
||||
enter-active-class="animazione fadeIn"
|
||||
leave-active-class="animazione fadeOut"
|
||||
>
|
||||
<q-item
|
||||
v-for="(user, index) in diffusorilist"
|
||||
:key="index"
|
||||
class="animated chip_shadow q-ma-sm"
|
||||
clickable
|
||||
v-ripple
|
||||
@click="gotoPage(`/my/${user.username}`)"
|
||||
>
|
||||
<transition-group name="fade" mode="out-in" appear enter-active-class="animazione fadeIn"
|
||||
leave-active-class="animazione fadeOut">
|
||||
<q-item v-for="(user, index) in diffusorilist" :key="index" class="animated chip_shadow q-ma-sm"
|
||||
clickable v-ripple @click="gotoPage(`/my/${user.username}`)">
|
||||
<q-item-section avatar>
|
||||
<q-avatar round size="48px">
|
||||
<img :src="userStore.getImgByProfile(user)" />
|
||||
<q-badge
|
||||
v-if="tools.isUserOnline(user)"
|
||||
align="top"
|
||||
floating
|
||||
color="green"
|
||||
>online</q-badge
|
||||
>
|
||||
<q-badge v-if="tools.isUserOnline(user)" align="top" floating
|
||||
color="green">online</q-badge>
|
||||
</q-avatar>
|
||||
</q-item-section>
|
||||
<q-item-section class="">
|
||||
@@ -364,30 +223,26 @@
|
||||
</div>
|
||||
</q-item-label>
|
||||
<q-item-label>
|
||||
{{
|
||||
tools.getNameToShow(user, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
}}
|
||||
<span v-html="tools.getNameToShow(user, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
"></span>
|
||||
</q-item-label>
|
||||
<q-item-label caption>{{
|
||||
tools.getUserNameOnlyIfToShow(user, null, {
|
||||
showprov: true,
|
||||
showprov: false,
|
||||
html: true,
|
||||
})
|
||||
}}</q-item-label>
|
||||
</q-item-section>
|
||||
<q-item-section side
|
||||
><div
|
||||
:class="
|
||||
`text-h6 q-mx-sm q-px-sm text-bold ` +
|
||||
($q.dark.isActive ? `text-white` : `text-black`)
|
||||
"
|
||||
>
|
||||
<q-item-section side>
|
||||
<div :class="`text-h6 q-mx-sm q-px-sm text-bold ` +
|
||||
($q.dark.isActive ? `text-white` : `text-black`)
|
||||
">
|
||||
{{ user.count }}
|
||||
</div></q-item-section
|
||||
>
|
||||
</div>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</transition-group>
|
||||
</q-list>
|
||||
@@ -398,13 +253,8 @@
|
||||
|
||||
<q-separator />
|
||||
|
||||
<q-expansion-item
|
||||
group="somegroup"
|
||||
icon="fas fa-handshake"
|
||||
:label="$t('handshake.last_strettedimano')"
|
||||
header-class="bg-teal text-white"
|
||||
expand-icon-class="text-white"
|
||||
>
|
||||
<q-expansion-item group="somegroup" icon="fas fa-handshake" :label="$t('handshake.last_strettedimano')"
|
||||
header-class="bg-teal text-white" expand-icon-class="text-white">
|
||||
<q-card class="bg-teal-2">
|
||||
<q-card-section>
|
||||
<div class="q-pa-md" style="max-width: 350px; margin: auto">
|
||||
@@ -416,34 +266,15 @@
|
||||
Rete di fiducia.
|
||||
</div>
|
||||
<q-list bordered>
|
||||
<transition-group
|
||||
name="fade"
|
||||
mode="out-in"
|
||||
appear
|
||||
enter-active-class="animazione fadeIn"
|
||||
leave-active-class="animazione fadeOut"
|
||||
>
|
||||
<q-item
|
||||
v-for="(user, index) in strettelist"
|
||||
:key="index"
|
||||
class="animated chip_shadow q-ma-sm"
|
||||
clickable
|
||||
v-ripple
|
||||
>
|
||||
<transition-group name="fade" mode="out-in" appear enter-active-class="animazione fadeIn"
|
||||
leave-active-class="animazione fadeOut">
|
||||
<q-item v-for="(user, index) in strettelist" :key="index" class="animated chip_shadow q-ma-sm"
|
||||
clickable v-ripple>
|
||||
<q-item-section avatar>
|
||||
<q-avatar
|
||||
round
|
||||
size="48px"
|
||||
@click="gotoPage(`/my/${user.username}`)"
|
||||
>
|
||||
<q-avatar round size="48px" @click="gotoPage(`/my/${user.username}`)">
|
||||
<img :src="userStore.getImgByProfile(user)" />
|
||||
<q-badge
|
||||
v-if="tools.isUserOnline(user)"
|
||||
align="top"
|
||||
floating
|
||||
color="green"
|
||||
>online</q-badge
|
||||
>
|
||||
<q-badge v-if="tools.isUserOnline(user)" align="top" floating
|
||||
color="green">online</q-badge>
|
||||
</q-avatar>
|
||||
</q-item-section>
|
||||
<q-item-section class="">
|
||||
@@ -452,46 +283,31 @@
|
||||
tools.getstrDateTimeLong(
|
||||
user.profile.handshake.date
|
||||
)
|
||||
}}</q-item-label
|
||||
>
|
||||
}}</q-item-label>
|
||||
<q-item-label>
|
||||
{{
|
||||
tools.getNameToShow(user, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
}}
|
||||
<span v-html="tools.getNameToShow(user, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
"></span>
|
||||
</q-item-label>
|
||||
|
||||
<q-item-label style="text-align: right">
|
||||
{{
|
||||
tools.getNameToShow(user.userfriend, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
}}
|
||||
<span v-html="tools.getNameToShow(user.userfriend, null, {
|
||||
showprov: true,
|
||||
html: true,
|
||||
})
|
||||
"></span>
|
||||
</q-item-label>
|
||||
</q-item-section>
|
||||
<q-item-section side>
|
||||
<q-avatar
|
||||
round
|
||||
size="48px"
|
||||
@click="
|
||||
gotoPage(`/my/${user.userfriend.username}`)
|
||||
"
|
||||
>
|
||||
<img
|
||||
:src="
|
||||
userStore.getImgByProfile(user.userfriend)
|
||||
"
|
||||
/>
|
||||
<q-badge
|
||||
v-if="tools.isUserOnline(user.userfriend)"
|
||||
align="top"
|
||||
floating
|
||||
color="green"
|
||||
>online</q-badge
|
||||
>
|
||||
<q-avatar round size="48px" @click="
|
||||
gotoPage(`/my/${user.userfriend.username}`)
|
||||
">
|
||||
<img :src="userStore.getImgByProfile(user.userfriend)
|
||||
" />
|
||||
<q-badge v-if="tools.isUserOnline(user.userfriend)" align="top" floating
|
||||
color="green">online</q-badge>
|
||||
</q-avatar>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
@@ -515,14 +331,8 @@
|
||||
</CListNationality>
|
||||
</div>-->
|
||||
<div class="clBorderTutor">
|
||||
<CLineChart
|
||||
:mydata="datastat.reg_daily"
|
||||
:title="$t('stat.reg_daily')"
|
||||
color="blue"
|
||||
bordercolor="blue"
|
||||
:sum="true"
|
||||
:showMedia="true"
|
||||
>
|
||||
<CLineChart :mydata="datastat.reg_daily" :title="$t('stat.reg_daily')" color="blue" bordercolor="blue"
|
||||
:sum="true" :showMedia="true">
|
||||
</CLineChart>
|
||||
|
||||
<!--<CLineChart :mydata="datastat.reg_daily" :title="$t('stat.reg_total')"
|
||||
|
||||
Reference in New Issue
Block a user