ver 0.5.73:

- corretto invia monete da Conto Collettivo a Utente
- Aggiunto Provincia (tutorial).. in corso...
This commit is contained in:
Surya Paolo
2023-03-04 10:20:49 +01:00
parent a250700c8b
commit 3f808189e3
28 changed files with 483 additions and 74 deletions

View File

@@ -72,10 +72,11 @@ export default defineComponent({
const $router = useRouter()
const $route = useRoute()
const showsendCoinTo = ref(false)
const showAccountInfo = ref(false)
const username = ref('')
const showsendCoinTo = ref(false)
const contact = ref(<IUserFields | null>null)
const circuit = ref(<ICircuit | null | undefined>null)
@@ -86,17 +87,9 @@ export default defineComponent({
})
function mounted() {
if (!props.mycontact) {
if (props.myusername) {
username.value = props.myusername
//++Todo: carica contact
contact.value = null
}
} else {
if (props.mycontact) {
contact.value = props.mycontact
username.value = props.mycontact.username
}
if (props.mycontact) {
contact.value = props.mycontact
username.value = props.mycontact.username
}
circuit.value = circuitStore.getCircuitByName(props.circuitname)
@@ -129,9 +122,9 @@ export default defineComponent({
shared_consts,
userStore,
tools,
showsendCoinTo,
circuit,
showAccountInfo,
showsendCoinTo,
}
},
})