- aggiornamenti guida RIS, FAQ
- Editor HTML aggiunto CSS e Script - Statistiche - CRISBalanceBar - Inizio Sync... (ma disattivato)
This commit is contained in:
@@ -153,22 +153,47 @@
|
||||
>
|
||||
<!-- Tags e Chips -->
|
||||
<q-item-label class="tags-row">
|
||||
<q-chip
|
||||
v-for="(rec, ind) of tools.getArrSubSector(table, myrec)"
|
||||
:key="'sub-' + ind"
|
||||
dense
|
||||
class="tag-chip subsector"
|
||||
>
|
||||
{{ rec.descr }}
|
||||
</q-chip>
|
||||
<q-chip
|
||||
v-for="(rec, ind) of tools.getArrSector(table, myrec)"
|
||||
:key="'sec-' + ind"
|
||||
dense
|
||||
class="tag-chip sector"
|
||||
>
|
||||
{{ rec.descr }}
|
||||
</q-chip>
|
||||
<div class="category-hierarchy">
|
||||
<q-chip
|
||||
v-for="(rec, ind) of arrSector"
|
||||
:key="'sec-' + ind"
|
||||
class="tag-chip sector"
|
||||
:style="{
|
||||
background: `linear-gradient(135deg, ${rec.color}, ${rec.color})`,
|
||||
}"
|
||||
>
|
||||
<q-icon
|
||||
v-if="rec.icon"
|
||||
:name="rec.icon"
|
||||
size="xs"
|
||||
class="q-mr-xs"
|
||||
/>
|
||||
{{ rec.descr }}
|
||||
</q-chip>
|
||||
<q-icon
|
||||
v-if="arrSubSector.length > 0"
|
||||
name="chevron_right"
|
||||
size="sm"
|
||||
class="hierarchy-arrow"
|
||||
/>
|
||||
<q-chip
|
||||
v-for="(rec, ind) of arrSubSector"
|
||||
:key="'sub-' + ind"
|
||||
class="tag-chip subsector"
|
||||
:style="{
|
||||
background: `linear-gradient(135deg, ${rec.color}, ${rec.color})`,
|
||||
opacity: 0.8,
|
||||
}"
|
||||
>
|
||||
<q-icon
|
||||
v-if="rec.icon"
|
||||
:name="rec.icon"
|
||||
size="xs"
|
||||
class="q-mr-xs"
|
||||
/>
|
||||
{{ rec.descr }}
|
||||
</q-chip>
|
||||
</div>
|
||||
<template v-for="(recstatus, index) in myrec.idStatusSkill">
|
||||
<q-badge
|
||||
v-if="
|
||||
|
||||
Reference in New Issue
Block a user