|
|
@@ -37,12 +37,23 @@
|
|
|
<span class="text-weight-bold text-white" style="font-size: 14px">
|
|
|
{{ column.label }}
|
|
|
</span>
|
|
|
- <q-badge
|
|
|
- color="white"
|
|
|
- :text-color="column.badgeTextColor"
|
|
|
- :label="columnMap[column.phase].length"
|
|
|
- style="font-size: 11px"
|
|
|
- />
|
|
|
+ <div class="row items-center gap-xs">
|
|
|
+ <q-badge
|
|
|
+ color="white"
|
|
|
+ :text-color="column.badgeTextColor"
|
|
|
+ :label="columnMap[column.phase].length"
|
|
|
+ style="font-size: 11px"
|
|
|
+ />
|
|
|
+ <q-btn
|
|
|
+ flat
|
|
|
+ round
|
|
|
+ dense
|
|
|
+ icon="mdi-plus"
|
|
|
+ color="white"
|
|
|
+ size="sm"
|
|
|
+ @click="openDialog(null, column.phase)"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<!-- Draggable card list -->
|
|
|
@@ -65,17 +76,6 @@
|
|
|
/>
|
|
|
</template>
|
|
|
</draggable>
|
|
|
-
|
|
|
- <!-- Add button -->
|
|
|
- <q-btn
|
|
|
- flat
|
|
|
- color="grey-6"
|
|
|
- icon="mdi-plus"
|
|
|
- label="Adicionar"
|
|
|
- class="q-mt-xs full-width"
|
|
|
- style="border-radius: 8px; border: 1px dashed #ccc"
|
|
|
- @click="openDialog(null, column.phase)"
|
|
|
- />
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|