- aggiornata la grafica della Home di RISO

- Profilo Completition
- Email Verificata
- Invita un Amico (invio di email)
This commit is contained in:
Surya Paolo
2025-11-15 19:38:39 +01:00
parent d812c6c799
commit b8df3ea721
110 changed files with 10856 additions and 2765 deletions

View File

@@ -2579,8 +2579,6 @@ export const useGlobalStore = defineStore('GlobalStore', {
else if (table === 'confpages_lang') myarr = costanti.ArrLang;
else if (table === 'bottype') myarr = shared_consts.BotType;
else if (table === 'visibility') myarr = shared_consts.Visibility;
else if (table === 'cat_interesse_arcadei')
myarr = shared_consts.Cat_Interesse_Arcadei;
else if (table === 'pub_to_share') myarr = shared_consts.Pub_to_Share;
else if (table === 'visibilGroup') myarr = shared_consts.VisibilGroup;
else if (table === 'statuscircuit') myarr = shared_consts.StatusCircuit;
@@ -2666,23 +2664,27 @@ export const useGlobalStore = defineStore('GlobalStore', {
},
getMsgServerError() {
if (this.serverError) {
if (this.serverMsgError) {
let mymsg = this.serverMsgError.msgerr || this.serverMsgError.data!.msgerr || this.serverMsgError.msgerr!.message
if (this.serverMsgError.status === 500) {
return 'Errore Interno del Server';
} else if (mymsg === '') {
return 'Codice Errore ' + this.serverMsgError.status;
}
try {
return mymsg
} catch (e) {
return this.serverMsgError.msgerr;
try {
if (this.serverError) {
if (this.serverMsgError) {
let mymsg = this.serverMsgError!.msgerr || this.serverMsgError.data!.msgerr || this.serverMsgError.msgerr!.message || this.serverMsgError
if (this.serverMsgError.status === 500) {
return 'Errore Interno del Server';
} else if (mymsg === '') {
return 'Codice Errore ' + this.serverMsgError.status;
}
try {
return mymsg
} catch (e) {
return this.serverMsgError.msgerr;
}
}
}
}
return '';
return '';
} catch (e) {
return '';
}
},
getTableJoinLabelValueByName(col: IColGridTable) {
@@ -3520,5 +3522,9 @@ export const useGlobalStore = defineStore('GlobalStore', {
this.inStampa = value;
// console.log('inStampa', this.inStampa)
},
async sendInviteEmail(email: string) {
// ...
}
},
});