Aggiunto la pagina dei Beni e Servizi della persona singola, separata dal profilo.

This commit is contained in:
Surya Paolo
2022-12-03 01:32:48 +01:00
parent 93abed1e8b
commit e11cf19149
24 changed files with 467 additions and 98 deletions

View File

@@ -7333,6 +7333,20 @@ export const tools = {
return ''
},
getoptionsMainCards(only: boolean) {
let myarr = []
let obj = { label: '', value: '', icon: '' }
for (let i = 0; i < costanti.MAINCARDS.length; i++) {
let rec: any = costanti.MAINCARDS[i]
if (rec.table) {
obj.label = rec.title
obj.value = rec.table
obj.icon = rec.icon
myarr.push({ ...obj })
}
}
return myarr
},
// getLocale() {
// if (navigator.languages && navigator.languages.length > 0) {