This commit is contained in:
Surya Paolo
2022-11-12 11:52:20 +01:00
parent f3a2f2491e
commit 3c20038c68
79 changed files with 7630 additions and 37 deletions

View File

@@ -1184,6 +1184,10 @@ export const shared_consts = {
value: 6,
label: 'Margine',
},
{
value: 7,
label: 'Card',
},
{
value: 8,
label: 'ImgTitolo',
@@ -1253,6 +1257,7 @@ export const shared_consts = {
ELEMTYPE: {
TITLE: 5,
MARGINI: 6,
CARD: 7,
IMGTITLE: 8,
TEXT: 10,
HTML: 20,
@@ -1271,6 +1276,13 @@ export const shared_consts = {
OPENSTREETMAP: 120,
},
ALIGNTYPE: {
NONE: 0,
LEFT: 1,
CEHTER: 2,
RIGHT: 3,
},
getStatusStr(status: number) {
const trovatorec = this.OrderStatusStr.find((rec) => rec.value === status)
return (trovatorec) ? trovatorec.label : ''