- 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,
}
},
})