go on Conto Comunitario
This commit is contained in:
@@ -23,7 +23,7 @@
|
|||||||
<q-btn
|
<q-btn
|
||||||
glossy
|
glossy
|
||||||
size="xl"
|
size="xl"
|
||||||
label="Installa App su iOS"
|
label="Installa App"
|
||||||
@click="viewiOS = !viewiOS"
|
@click="viewiOS = !viewiOS"
|
||||||
icon="fab fa-apple"
|
icon="fab fa-apple"
|
||||||
color="green"
|
color="green"
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
<q-btn
|
<q-btn
|
||||||
glossy
|
glossy
|
||||||
size="lg"
|
size="lg"
|
||||||
label="Installa App su Android"
|
label="Installa App"
|
||||||
@click="viewAndroid = !viewAndroid"
|
@click="viewAndroid = !viewAndroid"
|
||||||
icon="fab fa-android"
|
icon="fab fa-android"
|
||||||
color="green"
|
color="green"
|
||||||
|
|||||||
@@ -43,7 +43,7 @@
|
|||||||
<q-btn
|
<q-btn
|
||||||
v-if="
|
v-if="
|
||||||
userStore.getMyCircuitsInCommonByUser(myuser).length > 0 &&
|
userStore.getMyCircuitsInCommonByUser(myuser).length > 0 &&
|
||||||
((myuser.username !== userStore.my.username) || userStore.hoContiComunitariDaAmministrare())
|
((myuser.username !== userStore.my.username) || userStore.hoContiCollettiviDaAmministrare())
|
||||||
"
|
"
|
||||||
icon="fas fa-coins"
|
icon="fas fa-coins"
|
||||||
color="green"
|
color="green"
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
<q-btn
|
<q-btn
|
||||||
v-if="
|
v-if="
|
||||||
userStore.getMyCircuitsInCommonByUser(contact).length > 0 &&
|
userStore.getMyCircuitsInCommonByUser(contact).length > 0 &&
|
||||||
((contact.username !== userStore.my.username) || userStore.hoContiComunitariDaAmministrare())
|
((contact.username !== userStore.my.username) || userStore.hoContiCollettiviDaAmministrare())
|
||||||
"
|
"
|
||||||
icon="fas fa-coins"
|
icon="fas fa-coins"
|
||||||
color="green"
|
color="green"
|
||||||
|
|||||||
@@ -38,6 +38,11 @@ export default defineComponent({
|
|||||||
required: false,
|
required: false,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
|
to_contocom: {
|
||||||
|
type: String,
|
||||||
|
required: false,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
from_group: {
|
from_group: {
|
||||||
type: Object as PropType<IMyGroup>,
|
type: Object as PropType<IMyGroup>,
|
||||||
required: false,
|
required: false,
|
||||||
@@ -123,6 +128,9 @@ export default defineComponent({
|
|||||||
arrGroupsList.value.push({ label: group.groupname, value: group.groupname });
|
arrGroupsList.value.push({ label: group.groupname, value: group.groupname });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (tools.iAmAdminCircuit(circuitloaded.value.name))
|
||||||
|
arrGroupsList.value.push({ label: circuitloaded.value.name, value: circuitloaded.value.path });
|
||||||
|
|
||||||
// accountdest.value = userStore.getAccountByCircuitId(circuitloaded.value._id)
|
// accountdest.value = userStore.getAccountByCircuitId(circuitloaded.value._id)
|
||||||
if (accountloaded.value) {
|
if (accountloaded.value) {
|
||||||
remainingCoins.value = circuitStore.getRemainingCoinsToSend(accountloaded.value)
|
remainingCoins.value = circuitStore.getRemainingCoinsToSend(accountloaded.value)
|
||||||
@@ -196,6 +204,19 @@ export default defineComponent({
|
|||||||
|
|
||||||
aggiorna()
|
aggiorna()
|
||||||
|
|
||||||
|
show.value = true
|
||||||
|
}
|
||||||
|
if (props.to_contocom) {
|
||||||
|
bothcircuits.value = userStore.getMyCircuits()
|
||||||
|
|
||||||
|
console.log('to_contocom', props.to_contocom)
|
||||||
|
circuitsel.value = props.circuitname
|
||||||
|
if (!userStore.IsMyCircuitByName(circuitsel.value)) {
|
||||||
|
circuitsel.value = bothcircuits.value[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
aggiorna()
|
||||||
|
|
||||||
show.value = true
|
show.value = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -205,9 +226,12 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
function sendCoin() {
|
function sendCoin() {
|
||||||
console.log('sendcoin', qty.value, props.to_group ? props.to_group.groupname : props.to_user.username)
|
console.log('sendcoin', qty.value, props.to_group ? props.to_group.groupname : (props.to_user ? props.to_user.username : props.to_contocom))
|
||||||
|
|
||||||
|
let ok = (props.to_user && props.to_user.username) ||
|
||||||
|
(props.to_group && props.to_group.groupname) ||
|
||||||
|
(props.to_contocom)
|
||||||
|
|
||||||
let ok = (props.to_user && props.to_user.username) || (props.to_group && props.to_group.groupname)
|
|
||||||
|
|
||||||
if (ok && qty.value && circuitloaded.value) {
|
if (ok && qty.value && circuitloaded.value) {
|
||||||
let myrecsendcoin: ISendCoin = {
|
let myrecsendcoin: ISendCoin = {
|
||||||
@@ -220,7 +244,7 @@ export default defineComponent({
|
|||||||
symbol: circuitloaded.value.symbol,
|
symbol: circuitloaded.value.symbol,
|
||||||
}
|
}
|
||||||
|
|
||||||
myrecsendcoin.groupdest = props.to_group ? props.to_group.groupname : ''
|
myrecsendcoin.groupdest = props.to_group ? props.to_group.groupname : props.to_contocom
|
||||||
myrecsendcoin.dest = props.to_user ? props.to_user.username : ''
|
myrecsendcoin.dest = props.to_user ? props.to_user.username : ''
|
||||||
|
|
||||||
myrecsendcoin.grouporig = tipoConto.value === costanti.AccountType.COMMUNITY_ACCOUNT ? from_groupname.value : ''
|
myrecsendcoin.grouporig = tipoConto.value === costanti.AccountType.COMMUNITY_ACCOUNT ? from_groupname.value : ''
|
||||||
|
|||||||
@@ -113,6 +113,13 @@
|
|||||||
:circuitname="circuitloaded.name"
|
:circuitname="circuitloaded.name"
|
||||||
>
|
>
|
||||||
</CMyGroupOnlyView>
|
</CMyGroupOnlyView>
|
||||||
|
<CMyGroupOnlyView
|
||||||
|
v-if="circuitloaded && to_contocom"
|
||||||
|
:mygrp="{groupname: to_contocom}"
|
||||||
|
:visu="costanti.USER_GROUPS"
|
||||||
|
:circuitname="circuitloaded.name"
|
||||||
|
>
|
||||||
|
</CMyGroupOnlyView>
|
||||||
</q-banner>
|
</q-banner>
|
||||||
|
|
||||||
<div v-if="circuitloaded">
|
<div v-if="circuitloaded">
|
||||||
@@ -208,14 +215,15 @@
|
|||||||
? qtyRef.hasError || !circuitloaded.transactionsEnabled ||
|
? qtyRef.hasError || !circuitloaded.transactionsEnabled ||
|
||||||
((tipoConto === costanti.AccountType.USER) && to_user && (from_username === to_user.username)) ||
|
((tipoConto === costanti.AccountType.USER) && to_user && (from_username === to_user.username)) ||
|
||||||
((tipoConto === costanti.AccountType.COMMUNITY_ACCOUNT) && !from_groupname) ||
|
((tipoConto === costanti.AccountType.COMMUNITY_ACCOUNT) && !from_groupname) ||
|
||||||
((tipoConto === costanti.AccountType.COMMUNITY_ACCOUNT) && to_group && from_groupname && (to_group.groupname === from_groupname))
|
((tipoConto === costanti.AccountType.COMMUNITY_ACCOUNT) && to_group && from_groupname && (to_group.groupname === from_groupname)) ||
|
||||||
|
((tipoConto === costanti.AccountType.COMMUNITY_ACCOUNT) && !to_contocom)
|
||||||
: false
|
: false
|
||||||
"
|
"
|
||||||
:label="
|
:label="
|
||||||
$t('circuit.sendcoinsto', {
|
$t('circuit.sendcoinsto', {
|
||||||
qty,
|
qty,
|
||||||
coin: circuitsel,
|
coin: circuitsel,
|
||||||
dest: to_group ? to_group.groupname : to_user.username,
|
dest: to_group ? to_group.groupname : (to_user ? to_user.username : to_contocom),
|
||||||
})
|
})
|
||||||
"
|
"
|
||||||
color="positive"
|
color="positive"
|
||||||
|
|||||||
@@ -248,7 +248,7 @@ export const useUserStore = defineStore('UserStore', {
|
|||||||
return this.my.profile.manage_mygroups
|
return this.my.profile.manage_mygroups
|
||||||
},
|
},
|
||||||
|
|
||||||
hoContiComunitariDaAmministrare(): boolean {
|
hoContiCollettiviDaAmministrare(): boolean {
|
||||||
const arr = this.my.profile.manage_mygroups.find((group: IMyGroup) => group.account)
|
const arr = this.my.profile.manage_mygroups.find((group: IMyGroup) => group.account)
|
||||||
return arr ? true : false
|
return arr ? true : false
|
||||||
},
|
},
|
||||||
@@ -386,6 +386,13 @@ export const useUserStore = defineStore('UserStore', {
|
|||||||
return tools.getCommon([...this.my.profile.mycircuits], [...user.profile.mycircuits], 'circuitname')
|
return tools.getCommon([...this.my.profile.mycircuits], [...user.profile.mycircuits], 'circuitname')
|
||||||
},
|
},
|
||||||
|
|
||||||
|
getMyCircuits(): any[] {
|
||||||
|
|
||||||
|
if (!this.my.profile.mycircuits)
|
||||||
|
return []
|
||||||
|
return this.my.profile.mycircuits.map(item => item.circuitname)
|
||||||
|
},
|
||||||
|
|
||||||
getMyCircuitsInCommonByGroup(group: IMyGroup): any[] {
|
getMyCircuitsInCommonByGroup(group: IMyGroup): any[] {
|
||||||
|
|
||||||
if (!this.my.profile.mycircuits || (!group || !group.mycircuits))
|
if (!this.my.profile.mycircuits || (!group || !group.mycircuits))
|
||||||
|
|||||||
@@ -280,6 +280,12 @@
|
|||||||
@click="EseguiFunz('ReplaceUsername', search_username, replace_username)"></q-btn>
|
@click="EseguiFunz('ReplaceUsername', search_username, replace_username)"></q-btn>
|
||||||
<br>
|
<br>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<q-btn
|
||||||
|
label="Create Account Circuits" color="primary"
|
||||||
|
@click="EseguiFunz('CreateAccountCircuits', search_username, replace_username)"></q-btn>
|
||||||
|
<br>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<q-field
|
<q-field
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
|
|||||||
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
||||||
import { CCurrencyValue } from '@/components/CCurrencyValue'
|
import { CCurrencyValue } from '@/components/CCurrencyValue'
|
||||||
import { CSaldo } from '@/components/CSaldo'
|
import { CSaldo } from '@/components/CSaldo'
|
||||||
|
import { CSendCoins } from '@/components/CSendCoins'
|
||||||
import { CTitleSec } from '@/components/CTitleSec'
|
import { CTitleSec } from '@/components/CTitleSec'
|
||||||
import { CSkill } from '@/components/CSkill'
|
import { CSkill } from '@/components/CSkill'
|
||||||
import { CDateTime } from '@/components/CDateTime'
|
import { CDateTime } from '@/components/CDateTime'
|
||||||
@@ -31,7 +32,8 @@ export default defineComponent({
|
|||||||
name: 'mycircuit',
|
name: 'mycircuit',
|
||||||
components: {
|
components: {
|
||||||
CProfile, CTitleBanner, CMyFieldRec, CSkill, CTitleSec, CDateTime, CMyFriends,
|
CProfile, CTitleBanner, CMyFieldRec, CSkill, CTitleSec, CDateTime, CMyFriends,
|
||||||
CGridTableRec, CMyUser, CCheckIfIsLogged, CCurrencyValue, CSaldo, CNotifAtTop
|
CGridTableRec, CMyUser, CCheckIfIsLogged, CCurrencyValue, CSaldo, CNotifAtTop,
|
||||||
|
CSendCoins,
|
||||||
},
|
},
|
||||||
props: {},
|
props: {},
|
||||||
setup() {
|
setup() {
|
||||||
@@ -47,6 +49,8 @@ export default defineComponent({
|
|||||||
const groupsListAdmin = ref(<IMyGroup[]>[])
|
const groupsListAdmin = ref(<IMyGroup[]>[])
|
||||||
const groupnameSel = ref('')
|
const groupnameSel = ref('')
|
||||||
|
|
||||||
|
const showsendCoinTo = ref(false)
|
||||||
|
|
||||||
const animation = ref('fade')
|
const animation = ref('fade')
|
||||||
|
|
||||||
const path = computed(() => $route.params.path ? $route.params.path.toString() : '')
|
const path = computed(() => $route.params.path ? $route.params.path.toString() : '')
|
||||||
@@ -450,6 +454,7 @@ export default defineComponent({
|
|||||||
filterextra_group,
|
filterextra_group,
|
||||||
groupsListAdmin,
|
groupsListAdmin,
|
||||||
groupnameSel,
|
groupnameSel,
|
||||||
|
showsendCoinTo,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -242,84 +242,82 @@
|
|||||||
<q-tab-panels v-model="tabcircuit" animated>
|
<q-tab-panels v-model="tabcircuit" animated>
|
||||||
<q-tab-panel name="gruppicom">
|
<q-tab-panel name="gruppicom">
|
||||||
<div class="row justify-center">
|
<div class="row justify-center">
|
||||||
<q-btn rounded icon="fas fa-user-plus" class="text-center">
|
<q-btn rounded icon="fas fa-user-plus" class="text-center">
|
||||||
<q-menu>
|
<q-menu>
|
||||||
<q-item>
|
<q-item> Chiedi di Entrare nei Circuiti: </q-item>
|
||||||
Chiedi di Entrare nei Circuiti:
|
<q-list
|
||||||
</q-item>
|
v-for="(group, ind) of groupsListAdmin"
|
||||||
<q-list
|
:key="ind"
|
||||||
v-for="(group, ind) of groupsListAdmin"
|
class="q-pa-sm"
|
||||||
:key="ind"
|
|
||||||
class="q-pa-sm"
|
|
||||||
>
|
|
||||||
<q-item>
|
|
||||||
<q-item-section>
|
|
||||||
<q-btn
|
|
||||||
v-if="
|
|
||||||
group.groupname &&
|
|
||||||
!circuitStore.IsAskedCircuitByNameAndGroup(
|
|
||||||
circuit.name,
|
|
||||||
group.groupname
|
|
||||||
) &&
|
|
||||||
!userStore.IsMyCircuitByNameAndGroup(
|
|
||||||
circuit.name,
|
|
||||||
group.groupname
|
|
||||||
)
|
|
||||||
"
|
|
||||||
icon="fas fa-user-plus"
|
|
||||||
color="primary"
|
|
||||||
:label="group.groupname"
|
|
||||||
@click="
|
|
||||||
requestToEnterCircuit = true;
|
|
||||||
groupnameSel = group;
|
|
||||||
"
|
|
||||||
/>
|
|
||||||
<q-btn
|
|
||||||
v-else-if="
|
|
||||||
group.groupname &&
|
|
||||||
circuitStore.IsAskedCircuitByNameAndGroup(
|
|
||||||
circuit.name,
|
|
||||||
group.groupname
|
|
||||||
) &&
|
|
||||||
!userStore.IsMyCircuitByNameAndGroup(
|
|
||||||
circuit.name,
|
|
||||||
group.groupname
|
|
||||||
)
|
|
||||||
"
|
|
||||||
icon="fas fa-user-minus"
|
|
||||||
flat
|
|
||||||
:label="$t('shared.cancel_ask_short')"
|
|
||||||
@click="
|
|
||||||
tools.cancelReqCircuit(
|
|
||||||
$q,
|
|
||||||
userStore.my.username,
|
|
||||||
circuit.name,
|
|
||||||
group.groupname
|
|
||||||
)
|
|
||||||
"
|
|
||||||
/>
|
|
||||||
</q-item-section>
|
|
||||||
</q-item>
|
|
||||||
</q-list>
|
|
||||||
|
|
||||||
<q-list>
|
|
||||||
<q-item
|
|
||||||
clickable
|
|
||||||
v-close-popup
|
|
||||||
@click="
|
|
||||||
tools.setCmd(
|
|
||||||
$q,
|
|
||||||
shared_consts.GROUPSCMD.REQGROUP,
|
|
||||||
myusername(),
|
|
||||||
true,
|
|
||||||
grp.groupname
|
|
||||||
)
|
|
||||||
"
|
|
||||||
>
|
>
|
||||||
</q-item>
|
<q-item>
|
||||||
</q-list>
|
<q-item-section>
|
||||||
</q-menu>
|
<q-btn
|
||||||
</q-btn>
|
v-if="
|
||||||
|
group.groupname &&
|
||||||
|
!circuitStore.IsAskedCircuitByNameAndGroup(
|
||||||
|
circuit.name,
|
||||||
|
group.groupname
|
||||||
|
) &&
|
||||||
|
!userStore.IsMyCircuitByNameAndGroup(
|
||||||
|
circuit.name,
|
||||||
|
group.groupname
|
||||||
|
)
|
||||||
|
"
|
||||||
|
icon="fas fa-user-plus"
|
||||||
|
color="primary"
|
||||||
|
:label="group.groupname"
|
||||||
|
@click="
|
||||||
|
requestToEnterCircuit = true;
|
||||||
|
groupnameSel = group;
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
<q-btn
|
||||||
|
v-else-if="
|
||||||
|
group.groupname &&
|
||||||
|
circuitStore.IsAskedCircuitByNameAndGroup(
|
||||||
|
circuit.name,
|
||||||
|
group.groupname
|
||||||
|
) &&
|
||||||
|
!userStore.IsMyCircuitByNameAndGroup(
|
||||||
|
circuit.name,
|
||||||
|
group.groupname
|
||||||
|
)
|
||||||
|
"
|
||||||
|
icon="fas fa-user-minus"
|
||||||
|
flat
|
||||||
|
:label="$t('shared.cancel_ask_short')"
|
||||||
|
@click="
|
||||||
|
tools.cancelReqCircuit(
|
||||||
|
$q,
|
||||||
|
userStore.my.username,
|
||||||
|
circuit.name,
|
||||||
|
group.groupname
|
||||||
|
)
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
</q-list>
|
||||||
|
|
||||||
|
<q-list>
|
||||||
|
<q-item
|
||||||
|
clickable
|
||||||
|
v-close-popup
|
||||||
|
@click="
|
||||||
|
tools.setCmd(
|
||||||
|
$q,
|
||||||
|
shared_consts.GROUPSCMD.REQGROUP,
|
||||||
|
myusername(),
|
||||||
|
true,
|
||||||
|
grp.groupname
|
||||||
|
)
|
||||||
|
"
|
||||||
|
>
|
||||||
|
</q-item>
|
||||||
|
</q-list>
|
||||||
|
</q-menu>
|
||||||
|
</q-btn>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<CTitleSec :title="$t('circuit.listaconticollettivi')" />
|
<CTitleSec :title="$t('circuit.listaconticollettivi')" />
|
||||||
@@ -546,10 +544,7 @@
|
|||||||
>
|
>
|
||||||
</CCurrencyValue>
|
</CCurrencyValue>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div v-if="circuit.qta_max_default_grp" class="sezioni">
|
||||||
v-if="circuit.qta_max_default_grp"
|
|
||||||
class="sezioni"
|
|
||||||
>
|
|
||||||
<CCurrencyValue
|
<CCurrencyValue
|
||||||
:symbol="tools.getSymbolByCircuit(circuit)"
|
:symbol="tools.getSymbolByCircuit(circuit)"
|
||||||
:color="tools.getColorByCircuit(circuit)"
|
:color="tools.getColorByCircuit(circuit)"
|
||||||
@@ -561,9 +556,7 @@
|
|||||||
>
|
>
|
||||||
</CCurrencyValue>
|
</CCurrencyValue>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div class="sezioni">
|
||||||
class="sezioni"
|
|
||||||
>
|
|
||||||
<CCurrencyValue
|
<CCurrencyValue
|
||||||
:symbol="tools.getSymbolByCircuit(circuit)"
|
:symbol="tools.getSymbolByCircuit(circuit)"
|
||||||
:color="tools.getColorByCircuit(circuit)"
|
:color="tools.getColorByCircuit(circuit)"
|
||||||
@@ -670,6 +663,46 @@
|
|||||||
</div>
|
</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
</q-card>
|
</q-card>
|
||||||
|
<q-card v-if="circuit.name">
|
||||||
|
<q-card-section>
|
||||||
|
<div class="text-h6">
|
||||||
|
{{ t('circuit.contocomunitario') }}:
|
||||||
|
</div>
|
||||||
|
</q-card-section>
|
||||||
|
<q-separator />
|
||||||
|
|
||||||
|
<q-card-section>
|
||||||
|
<div class="col-12 text-h7">
|
||||||
|
<span v-if="checkifShow('descr')">
|
||||||
|
<CSaldo
|
||||||
|
v-if="tools.isUserOk() && circuit.account"
|
||||||
|
:account="circuit.account"
|
||||||
|
:symbol="circuit.symbol"
|
||||||
|
:color="circuit.color"
|
||||||
|
:saldo="circuit.account.saldo"
|
||||||
|
:qtarem="
|
||||||
|
circuit.account
|
||||||
|
? circuitStore.getRemainingCoinsToSend(
|
||||||
|
circuit.account
|
||||||
|
)
|
||||||
|
: 0
|
||||||
|
"
|
||||||
|
>
|
||||||
|
</CSaldo>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<q-btn
|
||||||
|
v-if="tools.iAmAdminCircuit(circuit.name)"
|
||||||
|
icon="fas fa-coins"
|
||||||
|
color="green"
|
||||||
|
size="md"
|
||||||
|
dense
|
||||||
|
@click="showsendCoinTo = true"
|
||||||
|
>
|
||||||
|
</q-btn>
|
||||||
|
</div>
|
||||||
|
</q-card-section>
|
||||||
|
</q-card>
|
||||||
</q-tab-panel>
|
</q-tab-panel>
|
||||||
|
|
||||||
<q-tab-panel name="page">
|
<q-tab-panel name="page">
|
||||||
@@ -873,14 +906,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<div v-html="circuit.regulation"></div>
|
<div v-html="circuit.regulation"></div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
<q-card-section class="inset-shadow">
|
|
||||||
<div style="font-weight: bold; font-size: 1.25rem">
|
|
||||||
{{t('circuit.contocomunitario')}}
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
...
|
|
||||||
</div>
|
|
||||||
</q-card-section>
|
|
||||||
<q-card-actions align="center">
|
<q-card-actions align="center">
|
||||||
<q-btn
|
<q-btn
|
||||||
class="centeritems"
|
class="centeritems"
|
||||||
@@ -907,6 +932,14 @@
|
|||||||
</q-card-actions>
|
</q-card-actions>
|
||||||
</q-card>
|
</q-card>
|
||||||
</q-dialog>
|
</q-dialog>
|
||||||
|
<div v-if="showsendCoinTo">
|
||||||
|
<CSendCoins
|
||||||
|
:showprop="showsendCoinTo"
|
||||||
|
:to_contocom="circuit.path"
|
||||||
|
@close="showsendCoinTo = false"
|
||||||
|
>
|
||||||
|
</CSendCoins>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user