vers 1.1.6

- risolto problema cors ?!?
- notifiche transazioni pendenti OK
This commit is contained in:
Surya Paolo
2024-10-29 02:33:39 +01:00
parent baa4188746
commit b6f73019fe
82 changed files with 1771 additions and 294 deletions

View File

@@ -1,6 +1,6 @@
<template>
<q-select
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"
rounded
outlined
v-model="color"
@@ -12,19 +12,14 @@
map-options
>
<template v-slot:selected>
<q-chip
dense
square
color="white"
class="q-my-none q-ml-xs q-mr-none"
>
<span :style="`color: `+ color">{{ color }}</span>
<q-chip dense square color="white" class="q-my-none q-ml-xs q-mr-none">
<span :style="`background-color: ${color}; color: white;`">{{ color }}</span>
</q-chip>
</template>
<template v-slot:option="scope">
<q-item v-bind="scope.itemProps">
<q-item-section>
<q-item-label :style="`color: ` + scope.opt.value">{{
<q-item-label :style="`background-color: ${scope.opt.label}; color: white;`">{{
scope.opt.label
}}</q-item-label>
</q-item-section>