add transactionsEnabled : enable the circuit to the transactions

This commit is contained in:
Paolo Arena
2022-09-22 11:06:04 +02:00
parent 7358216e6f
commit bc2080c42c
19 changed files with 53 additions and 22 deletions

View File

@@ -18,6 +18,10 @@ export default defineComponent({
type: Boolean,
default: false,
},
circuitname: {
type: String,
default: ''
},
to_user: {
type: Object as PropType<IUserFields>,
required: true,
@@ -109,7 +113,11 @@ export default defineComponent({
console.log('user', props.to_user)
bothcircuits.value = userStore.IsMyCircuitByUser(props.to_user)
circuitsel.value = tools.getCookie(tools.CIRCUIT_USE, bothcircuits.value[0])
if (props.circuitname) {
circuitsel.value = props.circuitname
} else {
circuitsel.value = tools.getCookie(tools.CIRCUIT_USE, bothcircuits.value[0])
}
if (!userStore.IsMyCircuitByName(circuitsel.value)) {
circuitsel.value = bothcircuits.value[0]
}