- Invia e Ricevi RIS (grafica aggiornata)

- Visualizzazione Movimenti (ultimi e successivi), per singolo e di tutti
This commit is contained in:
Surya Paolo
2024-10-11 02:29:29 +02:00
parent f9277f3a01
commit ec356c70d9
123 changed files with 3595218 additions and 638 deletions

View File

@@ -26,6 +26,11 @@ export default defineComponent({
required: false,
default: ''
},
showbuttolastmov: {
type: Boolean,
required: false,
default: false
},
},
emits: ['loaded'],
setup(props, { emit }) {
@@ -35,10 +40,12 @@ export default defineComponent({
const globalStore = useGlobalStore()
const { t } = useI18n();
const loadingvalues = ref(false)
const numtransaz = ref(0)
const prectransaz = ref(0)
const tab = ref('tutti')
const nummovTodownload = ref(5)
const mylist = computed(() => {
if (globalStore.datastat || userStore.my.profile) {
@@ -128,6 +135,13 @@ export default defineComponent({
mounted()
})
async function addlastmov() {
nummovTodownload.value += 5
loadingvalues.value = true
await globalStore.loadLastMovements(nummovTodownload.value)
loadingvalues.value = false
}
return {
userStore,
@@ -140,6 +154,8 @@ export default defineComponent({
navigabyMov,
numtransaz,
tab,
loadingvalues,
addlastmov,
}
}
})