Riso: Ris Italia, altre modifiche grafiche

Lista Utenti da Verificare
This commit is contained in:
Surya Paolo
2023-11-30 01:48:29 +01:00
parent fdf232b351
commit ee5235549e
42 changed files with 863 additions and 197 deletions

View File

@@ -44,7 +44,11 @@ export default defineComponent({
const $q = useQuasar()
const { t } = useI18n()
const showonlymine = ref(true)
const showwhommov = ref(1)
const optionsmov = [
{ label: t('movement.onlymymov'), value: 1 },
{ label: t('movement.allmov'), value: 2 },
]
const tabellare = ref(false)
const groupsListAdmin = ref(<IMyGroup[]>[])
const groupnameSel = ref(<any>null)
@@ -358,6 +362,7 @@ export default defineComponent({
username: 1,
name: 1,
surname: 1,
verified_by_aportador: 1,
lang: 1,
'profile.img': 1,
'profile.mycircuits': 1,
@@ -420,7 +425,7 @@ export default defineComponent({
}
const extraparams_movs = (() => {
if (showonlymine.value) {
if (showwhommov.value === 1) {
return {
querytype: shared_consts.QUERYTYPE_LIST_MOVEMENTS,
myid: circuit.value ? circuit.value._id : '',
@@ -526,7 +531,7 @@ export default defineComponent({
circuitStore,
qtarem,
saldo,
showonlymine,
showwhommov,
tabellare,
showsaldi,
filterextra_group,
@@ -544,6 +549,7 @@ export default defineComponent({
loadAccount,
aggiornaSaldo,
loadSaldo,
optionsmov,
}
}
})