- added Aportador Solidario to registration
- added email_paypal and username_telegram
This commit is contained in:
@@ -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'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user