categorie

This commit is contained in:
Surya Paolo
2025-12-07 15:17:37 +01:00
parent f238630dd7
commit 6fdb101092
5 changed files with 31 additions and 12 deletions

View File

@@ -1,11 +1,11 @@
VITE_APP_ID="13"
VITE_APP_URL="https://test.riso.app"
VITE_MONGODB_HOST="https://testapi.riso.app"
VITE_LOGO_REG="riso-logo-full.png"
VITE_APP_URL="https://riso.app"
VITE_MONGODB_HOST="https://api.riso.app"
VITE_LOGO_REG='riso-logo-full.png'
VITE_PUBLICKEY_PUSH="BGXRf1TgcqocqD6J7qnRgCG7AvM2lxAoW7peb7UEzB4SxBb6DxGRdJ0UvD9ewnrB9KrSrh0-aDCODXBm7sZ1DDs"
VITE_DEBUG="1"
VITE_VUE_APP_ISTEST="1"
DIRECTORY_LOCAL="myprojplanet_vite"
DIRECTORY_SERVER="/var/www/nodejs_test.riso_server"
SERVERDIR_WEBSITE="/var/www/test.riso.app"
VITE_DEBUG="0"
VITE_VUE_APP_ISTEST="0"
DIRECTORY_LOCAL=myprojplanet_vite
DIRECTORY_SERVER=/var/www/nodejs_riso_server
SERVERDIR_WEBSITE="/var/www/riso.app"
SERVERPW_WEBSITE="pwdadmin@1AOK"

View File

@@ -445,6 +445,15 @@
i {
color: rgba($mainColor, 0.6); // Icona location con colore primario attenuato
}
.cities-text-bold {
font-weight: bold;
font-size: 1.1rem;
@media (max-width: $mobile-breakpoint) {
font-size: 1rem;
}
}
}
.cities-contrib-row {
@@ -556,6 +565,7 @@
}
}
.categories-dialog {
.dialog-header {
padding: 16px 20px;

View File

@@ -242,7 +242,7 @@
v-for="(prefId, ind) of myrec.preferences"
:key="ind"
size="32px"
:style="`background-color: ${tools.getPreferenceById(prefId)?.color || 'grey'}; cursor: pointer;`"
:style="`background-color: ${tools.getPreferenceById(prefId)?.color || 'grey'}; opacity: 0.85; cursor: pointer;`"
class="preference-icon-avatar"
@click.stop="showPreferencesDialog = true"
>
@@ -341,7 +341,9 @@
v-for="(rec, ind) of myrec.mycities"
:key="ind"
>
<span v-if="ind > 0">, </span>{{ rec.comune }} ({{ rec.prov }})
<span v-if="ind > 0">, </span>
<span v-if="table === shared_consts.TABLES_MYHOSPS" class="cities-text-bold">{{ rec.comune }} ({{ rec.prov }})</span>
<span v-else>{{ rec.comune }} ({{ rec.prov }})</span>
</span>
</div>
</q-item-label>
@@ -431,7 +433,7 @@
v-for="(rec, ind) of myrec.preferences"
:key="ind"
class="category-chip shadow-3"
:style="`background-color: ${tools.getPreferenceById(rec).color}; color: white;`"
:style="`background-color: ${tools.getPreferenceById(rec).color}; opacity: 0.85; color: white;`"
>
<q-icon
:name="tools.getPreferenceById(rec).icon"

View File

@@ -226,7 +226,6 @@
⚠️ Attenzione: Se non si sceglie il Comune di Residenza (il passaggio precedente) non è possibile poter scegliere la Provincia in cui accedere al Circuito RIS del tuo territorio.
</div>
<div v-if="mycircuit">mycircuit.value: {{ mycircuit.name }}</div>
<q-select
v-if="mylistcircuits && mylistcircuits.length > 1"
:behavior="$q.platform.is.ios === true ? 'dialog' : 'menu'"

View File

@@ -322,6 +322,14 @@
></q-btn>
<br />
</div>
<div class="row">
<q-btn
label="Riscrivi tutte le Categorie e Sottocategorie (Beni, Servizi, Ospitalità e Eventi)"
color="positive"
@click="EseguiFunz('RewriteCategESubCateg')"
></q-btn>
<br />
</div>
<div class="row">
<q-input
v-model="search_username"