- Invio RIS migliorata grafica e aggiunto tastierino numerico.

This commit is contained in:
Surya Paolo
2024-09-30 22:08:39 +02:00
parent 83a5b8b18b
commit 3a4faf0122
22 changed files with 634 additions and 315 deletions

View File

@@ -21,9 +21,9 @@ export default defineComponent({
required: true,
},
sendRIS: {
type: Number,
type: String,
required: false,
default: 0,
default: '',
}
},
components: { CLabel, CSendCoins },
@@ -32,10 +32,11 @@ export default defineComponent({
const userStore = useUserStore()
const globalStore = useGlobalStore()
const showsendCoinTo = ref(false)
const showsendCoinTo = ref(true)
const showingtooltip = ref(false)
const site = computed(() => globalStore.site)
const loading = ref(false)
function myusername() {
return userStore.my.username
@@ -70,6 +71,7 @@ export default defineComponent({
if (!userStore.my.profile.resid_province) {
// showProvinceToSelect.value = true
} else {
loading.value = true
showsendCoinTo.value = true
}
@@ -87,6 +89,7 @@ export default defineComponent({
showingtooltip,
clickOpenSendCoin,
site,
loading,
}
},
})

View File

@@ -1,6 +1,9 @@
<template>
<div class="row justify-evenly items-center q-pa-sm q-ma-sm">
<div >
<q-inner-loading id="spinner" :showing="loading">
<q-spinner-tail color="primary" size="4em"> </q-spinner-tail>
</q-inner-loading>
<div>
<q-btn
v-if="
tools.isUserOk() &&
@@ -18,10 +21,7 @@
>
</q-btn>
</div>
<div
v-if="showBtnActivities"
>
<div v-if="showBtnActivities">
<q-btn
v-if="site.confpages && site.confpages.showCompetenze"
icon="fas fa-house-user"
@@ -77,6 +77,7 @@
:to_user="myuser"
:sendRIS="sendRIS"
@close="showsendCoinTo = false"
@showed="loading = false"
>
</CSendCoins>
</div>