Ultimo aggiornamento Nuova versione del Sito !
@@ -17,7 +17,7 @@ const msg_website_de = {
|
||||
SignUp2: 'Registrazione',
|
||||
SignIn: 'Login',
|
||||
status: 'Statistiche',
|
||||
nextzoom: 'Prossimi Zoom (Conferenze)',
|
||||
nextzoom: 'Conferenze',
|
||||
requestresetpwd: 'Richiesta Reset Password',
|
||||
vreg: 'Verifica Reg',
|
||||
dashboard: 'Lavagna',
|
||||
|
||||
@@ -17,7 +17,7 @@ const msg_website_enUs = {
|
||||
SignUp2: 'Registration',
|
||||
SignIn: 'Login',
|
||||
status: 'Current state',
|
||||
nextzoom: 'Upcoming Zoom (Conferences)',
|
||||
nextzoom: 'Conferences',
|
||||
requestresetpwd: 'Password Reset Request',
|
||||
vreg: 'Check Registration',
|
||||
dashboard: 'Dashboard',
|
||||
|
||||
@@ -17,7 +17,7 @@ const msg_website_es = {
|
||||
SignUp2: 'Registro',
|
||||
SignIn: 'Login',
|
||||
status: 'Estadísticas',
|
||||
nextzoom: 'Próximo Zoom (Conferencias)',
|
||||
nextzoom: 'Conferencias',
|
||||
requestresetpwd: 'Solicitud de restablecimiento de contraseña',
|
||||
vreg: 'Verifica Reg',
|
||||
dashboard: 'Tablero',
|
||||
|
||||
@@ -20,7 +20,7 @@ const msg_website_fr = {
|
||||
SignUp2: 'Inscription',
|
||||
SignIn: 'Login',
|
||||
status: 'État actuel',
|
||||
nextzoom: 'Zoom à venir (Conférences)',
|
||||
nextzoom: 'Conférences',
|
||||
requestresetpwd: 'Demande de réinitialisation du mot de passe',
|
||||
vreg: 'Vérifier l\'inscription',
|
||||
dashboard: 'Tableau de bord',
|
||||
|
||||
@@ -17,7 +17,7 @@ const msg_website_it = {
|
||||
SignUp2: 'Registrazione',
|
||||
SignIn: 'Login',
|
||||
status: 'Statistiche',
|
||||
nextzoom: 'Prossimi Zoom (Conferenze)',
|
||||
nextzoom: 'Conferenze',
|
||||
requestresetpwd: 'Richiesta Reset Password',
|
||||
vreg: 'Verifica Reg',
|
||||
dashboard: 'Lavagna',
|
||||
|
||||
@@ -17,7 +17,7 @@ const msg_website_pt = {
|
||||
SignUp2: 'Inscrição',
|
||||
SignIn: 'Login',
|
||||
status: 'Estatísticas',
|
||||
nextzoom: 'Zoom à venir (Conférences)',
|
||||
nextzoom: 'Conférences',
|
||||
requestresetpwd: 'Pedido de redefinição de senha',
|
||||
vreg: '',
|
||||
dashboard: 'Tablero',
|
||||
|
||||
@@ -16,7 +16,7 @@ const msg_website_si = {
|
||||
SignUp2: 'Registracija',
|
||||
SignIn: 'Vpis',
|
||||
status: 'Statistika',
|
||||
nextzoom: 'Naslednji Zoom (Conferenze)',
|
||||
nextzoom: 'Conferenze',
|
||||
requestresetpwd: 'Prošnja za ponastavitev Gesla',
|
||||
vreg: 'Preveri Registracijo',
|
||||
dashboard: 'Tabla',
|
||||
|
||||
@@ -57,6 +57,7 @@ export default class Home extends MixinBase {
|
||||
public mysteps = 0
|
||||
public myaudio = 0
|
||||
public mytestimonianze = 0
|
||||
public tab = 'guida'
|
||||
public slide2 = 0
|
||||
public animare: number = 0
|
||||
public endload: boolean = false
|
||||
@@ -212,6 +213,9 @@ export default class Home extends MixinBase {
|
||||
}
|
||||
|
||||
public created() {
|
||||
if (!!tools.getCookie(tools.TABBED_HOME)) {
|
||||
this.tab = tools.getCookie(tools.TABBED_HOME)
|
||||
}
|
||||
this.animare = process.env.DEV ? 0 : 8000
|
||||
|
||||
for (let index = 0; index <= tools.getvideonum(true); ++index) {
|
||||
@@ -352,4 +356,8 @@ export default class Home extends MixinBase {
|
||||
return UserStore.state.my.profile.teleg_checkcode
|
||||
}
|
||||
|
||||
public changetab(val) {
|
||||
tools.setCookie(tools.TABBED_HOME, val)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -28,7 +28,6 @@
|
||||
<q-img src="statics/images/data_start.jpg" class="data_start"></q-img>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<div v-if="isLogged">
|
||||
<CVerifyEmail v-if="!isEmailVerified">
|
||||
|
||||
@@ -55,7 +54,44 @@
|
||||
|
||||
</div>
|
||||
|
||||
<div v-if="false">
|
||||
<q-tabs
|
||||
v-model="tab"
|
||||
dense
|
||||
class="bg-blue text-white shadow-2"
|
||||
indicator-color="white"
|
||||
align="center"
|
||||
narrow-indicator
|
||||
:breakpoint="350"
|
||||
@input="changetab"
|
||||
>
|
||||
<q-tab name="guida" icon="fas fa-check" :label="$t('pages.home')"></q-tab>
|
||||
<q-tab name="zoom" icon="fas fa-video" :label="$t('pages.nextzoom')"></q-tab>
|
||||
<q-tab name="statistiche" icon="fas fa-chart-line" :label="$t('pages.status')"></q-tab>
|
||||
|
||||
</q-tabs>
|
||||
|
||||
<q-tab-panels v-model="tab" animated>
|
||||
<q-tab-panel name="guida">
|
||||
<div v-if="isLogged">
|
||||
<CStatus :dense="false"></CStatus>
|
||||
</div>
|
||||
|
||||
</q-tab-panel>
|
||||
<q-tab-panel name="zoom">
|
||||
<CNextZoom>
|
||||
|
||||
</CNextZoom>
|
||||
|
||||
</q-tab-panel>
|
||||
<q-tab-panel name="statistiche">
|
||||
<CStatusReg>
|
||||
|
||||
</CStatusReg>
|
||||
|
||||
</q-tab-panel>
|
||||
</q-tab-panels>
|
||||
|
||||
<!--<div v-if="false">
|
||||
<CTitleBanner v-if="false" class="q-pa-xs" :title="$t('text.how')" bgcolor="bg-primary"
|
||||
clcolor="text-white"
|
||||
mystyle=" " myclass="myshad" canopen="true">
|
||||
@@ -258,27 +294,11 @@
|
||||
</CTitleBanner>
|
||||
|
||||
|
||||
<!--<CTitleBanner class="q-pa-xs" :title="$t('text.faq')" bgcolor="bg-info" clcolor="text-white"
|
||||
mystyle="letter-spacing: 0.125rem;">
|
||||
|
||||
</CTitleBanner>-->
|
||||
|
||||
|
||||
<div v-if="!tools.isMobile()" style="margin: 60px 60px;"></div>
|
||||
|
||||
</div>
|
||||
</div>-->
|
||||
|
||||
<CNextZoom>
|
||||
|
||||
</CNextZoom>
|
||||
|
||||
<CStatusReg>
|
||||
|
||||
</CStatusReg>
|
||||
|
||||
<div v-if="isLogged">
|
||||
<CStatus :dense="false"></CStatus>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</CMyPage>
|
||||
|
||||
BIN
src/statics/images/listanavi.jpg
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
src/statics/images/nave1.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
src/statics/images/nave10.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
src/statics/images/nave11.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
src/statics/images/nave12.jpg
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
src/statics/images/nave2.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
src/statics/images/nave3.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
src/statics/images/nave4.jpg
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
src/statics/images/nave5.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
src/statics/images/nave6.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
src/statics/images/nave7.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
src/statics/images/nave8.jpg
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
src/statics/images/nave9.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |