- Inserire l'immagine degli annunci sul bot Telegram
- Lista Ultimi Movimenti
This commit is contained in:
@@ -1219,7 +1219,7 @@ export const shared_consts = {
|
|||||||
color: 'secondary',
|
color: 'secondary',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '📩 Conferma Ordine Evaso (e aggiorna Qta in Stock)', //ORDER_CONFIRMED
|
label: '📩 Conferma Ordine Evaso (e aggiorna le quantità in Magsazzino)', //ORDER_CONFIRMED
|
||||||
value: 3,
|
value: 3,
|
||||||
icon: 'fas fa-calendar-check',
|
icon: 'fas fa-calendar-check',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
|
|||||||
@@ -14,4 +14,8 @@
|
|||||||
|
|
||||||
.date {
|
.date {
|
||||||
color: gray;
|
color: gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rigamov {
|
||||||
|
background-color: lightgray;
|
||||||
}
|
}
|
||||||
@@ -1,9 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<q-list bordered>
|
<q-list bordered>
|
||||||
<q-item
|
<q-item
|
||||||
v-for="mov in mylist"
|
v-for="(mov, index) in mylist"
|
||||||
:key="mov._id"
|
:key="mov._id"
|
||||||
class="q-mb-sm"
|
:class="[
|
||||||
|
'm-mb-sm',
|
||||||
|
{
|
||||||
|
'background-even': index % 2 === 0,
|
||||||
|
'background-odd': index % 2 !== 0,
|
||||||
|
},
|
||||||
|
]"
|
||||||
clickable
|
clickable
|
||||||
v-ripple
|
v-ripple
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -2270,4 +2270,13 @@ $coloreprincipale: lightblue;
|
|||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.background-even {
|
||||||
|
background-color: rgba(211, 211, 211, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.background-odd {
|
||||||
|
background-color: white;
|
||||||
|
/* O altro colore preferito */
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user