- Nella Lavagna, cliccando sul nome dell'invitato, compaiono le sue informazioni sugli step rimasti, in dettaglio.
- Ogni utente puo' cosi scegliere di regalare un proprio invitato, cliccando sull'invitato, scrivendo l'username del destinatario e premendo il bottone 'Regala Invitato'. Al destinatario gli arriverà un messaggio sul Bot Telegram che indica che gli è stato regalato un'invitato.
This commit is contained in:
@@ -12,7 +12,7 @@ import MixinMetaTags from '@src/mixins/mixin-metatags'
|
||||
// You can declare a mixin as the same style as components.
|
||||
@Component
|
||||
export default class MixinBase extends MixinMetaTags {
|
||||
public mythis() {
|
||||
get mythis() {
|
||||
return this
|
||||
}
|
||||
|
||||
@@ -130,8 +130,8 @@ export default class MixinBase extends MixinMetaTags {
|
||||
try {
|
||||
if (myval) {
|
||||
const myrec = JSON.parse(myval)
|
||||
console.log('*************** getarrValDb')
|
||||
console.table(myrec)
|
||||
// console.log('*************** getarrValDb')
|
||||
// console.table(myrec)
|
||||
return myrec
|
||||
} else {
|
||||
return []
|
||||
|
||||
@@ -11,6 +11,13 @@ import translate from '@src/globalroutines/util'
|
||||
// You can declare a mixin as the same style as components.
|
||||
@Component
|
||||
export default class MixinEvents extends Vue {
|
||||
get tools() {
|
||||
return tools
|
||||
}
|
||||
|
||||
get mythis() {
|
||||
return this
|
||||
}
|
||||
|
||||
public getImgEvent(event: IEvents) {
|
||||
if (!!event.img)
|
||||
@@ -19,7 +26,6 @@ export default class MixinEvents extends Vue {
|
||||
return 'statics/images/noimg.png'
|
||||
}
|
||||
|
||||
|
||||
public getStyleByEvent(event: IEvents, visu: boolean) {
|
||||
let myst = 'border: inset; border-color: darkblue; border-width: 3px; padding: 5px !important; '
|
||||
|
||||
|
||||
@@ -8,6 +8,14 @@ import { tools } from '@src/store/Modules/tools'
|
||||
export default class MixinMetaTags extends Vue {
|
||||
public mymeta: IMetaTags = {title: '', description: '', keywords: ''}
|
||||
|
||||
get mythis() {
|
||||
return this
|
||||
}
|
||||
|
||||
set mythis(aa) {
|
||||
|
||||
}
|
||||
|
||||
public setmeta(mymeta: IMetaTags) {
|
||||
this.mymeta = mymeta
|
||||
}
|
||||
|
||||
@@ -19,6 +19,10 @@ export default class MixinOperator extends MixinMetaTags {
|
||||
return this
|
||||
}
|
||||
|
||||
set mythis(my) {
|
||||
//
|
||||
}
|
||||
|
||||
get tools() {
|
||||
return tools
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ import { IMessage } from '@src/model'
|
||||
// You can declare a mixin as the same style as components.
|
||||
@Component
|
||||
export default class MixinUsers extends Vue {
|
||||
public mythis() {
|
||||
get mythis() {
|
||||
return this
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user