- fixed quantità

- creazione mappa numero utenti per provincia !
This commit is contained in:
Surya Paolo
2024-03-19 00:22:01 +01:00
parent 9f78ab61d9
commit 61db6cee36
90 changed files with 450 additions and 271 deletions

View File

@@ -15,7 +15,7 @@ import {
IColGridTable,
ISignupIscrizioneConacreisOptions,
ISignupIscrizioneArcadeiOptions,
ISettings,
ISettings,
} from '@src/model'
import { tools } from '@store/Modules/tools'
import translate from '@src/globalroutines/util'
@@ -1034,6 +1034,15 @@ export const useUserStore = defineStore('UserStore', {
}
},
async getProvincesForMap() {
return Api.SendReq('/users/infomap', 'POST', null)
.then((res) => {
return res ? res.data.ris : []
}).catch((error) => {
return null
})
},
async newsletterload(force: boolean) {
const globalStore = useGlobalStore()