- added Aportador Solidario to registration

- added email_paypal and username_telegram
This commit is contained in:
Paolo Arena
2019-12-29 01:54:00 +01:00
parent 8beb8162dd
commit cf91d45427
23 changed files with 471 additions and 292 deletions

View File

@@ -308,7 +308,7 @@ export default class Header extends Vue {
}
get getappname() {
return tools.getappname(this, tools.isMobile())
return tools.getsuffisso() + tools.getappname(this, tools.isMobile())
}
public toggleanimation() {
@@ -368,4 +368,13 @@ export default class Header extends Vue {
this.rightDrawerOpen = false
this.$router.replace('/signup')
}
get getClassColorHeader() {
if (tools.isTest())
return 'bg-warning'
else if (tools.isDebug())
return 'bg-info'
else
return 'bg-primary'
}
}

View File

@@ -1,6 +1,6 @@
<template>
<div>
<q-header reveal elevated class="bg-primary">
<q-header reveal elevated :class="getClassColorHeader">
<q-toolbar
color="primary"
:glossy="$q.theme === 'mat'"
@@ -155,8 +155,8 @@
<!--<span class="text-white background-red" v-else> {{$t('reg.non_verificato')}} </span>-->
<div v-if="isLogged" id="user-actions" class="text-center">
<q-btn round color="primary" icon="person"></q-btn>
<q-btn round color="warning" icon="lock"></q-btn>
<q-btn round color="primary" icon="person" to="/profile"></q-btn>
<!--<q-btn round color="warning" icon="lock"></q-btn>-->
<q-btn round color="secondary" icon="exit_to_app" @click='logoutHandler'></q-btn>
</div>