- Catalogo: Aggiunta di Schede
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="row items-start q-gutter-sm">
|
||||
<div class="row">
|
||||
<q-spinner v-if="!endload" color="primary" size="3em" :thickness="2" />
|
||||
<q-card
|
||||
:class="{
|
||||
@@ -30,7 +30,10 @@
|
||||
<q-img
|
||||
:src="
|
||||
myproduct.productInfo.imagefile
|
||||
? tools.getFullFileNameByImageFile('productInfos', myproduct.productInfo.imagefile)
|
||||
? tools.getFullFileNameByImageFile(
|
||||
'productInfos',
|
||||
myproduct.productInfo.imagefile
|
||||
)
|
||||
: myproduct.productInfo.image_link
|
||||
"
|
||||
:alt="myproduct.productInfo.name"
|
||||
@@ -45,11 +48,15 @@
|
||||
color="primary"
|
||||
round
|
||||
icon="fas fa-eye"
|
||||
|
||||
class="absolute semi-transparent"
|
||||
size="md"
|
||||
@click="toggleFullScreen"
|
||||
style="bottom: -10px; right: 0px; transform: translateY(-50%); z-index: 2"
|
||||
style="
|
||||
bottom: -10px;
|
||||
right: 0px;
|
||||
transform: translateY(-50%);
|
||||
z-index: 2;
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -226,7 +233,7 @@
|
||||
<div v-if="false" class="barcode">
|
||||
<barcode :value="myproduct.productInfo.code" format="EAN-13">
|
||||
</barcode>
|
||||
<vue-barcode ></vue-barcode>
|
||||
<vue-barcode></vue-barcode>
|
||||
</div>
|
||||
<div
|
||||
v-if="
|
||||
@@ -375,7 +382,8 @@
|
||||
<q-card-section
|
||||
v-if="
|
||||
editOn &&
|
||||
(!!myproduct.productInfo.imagefile || myproduct.productInfo.imagefile === '')
|
||||
(!!myproduct.productInfo.imagefile ||
|
||||
myproduct.productInfo.imagefile === '')
|
||||
"
|
||||
>
|
||||
<div class="text-center">
|
||||
@@ -921,11 +929,13 @@
|
||||
class="listaev__table"
|
||||
>
|
||||
<thead>
|
||||
<th>Data</th>
|
||||
<th>Persona</th>
|
||||
<th>Stato</th>
|
||||
<th>Quantita</th>
|
||||
<th>Note</th>
|
||||
<tr>
|
||||
<th>Data</th>
|
||||
<th>Persona</th>
|
||||
<th>Stato</th>
|
||||
<th>Quantita</th>
|
||||
<th>Note</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
@@ -1072,7 +1082,10 @@
|
||||
<q-img
|
||||
:src="
|
||||
myproduct.productInfo.imagefile
|
||||
? tools.getFullFileNameByImageFile('productInfos', myproduct.productInfo.imagefile)
|
||||
? tools.getFullFileNameByImageFile(
|
||||
'productInfos',
|
||||
myproduct.productInfo.imagefile
|
||||
)
|
||||
: myproduct.productInfo.image_link
|
||||
"
|
||||
:alt="myproduct.productInfo.name"
|
||||
|
||||
Reference in New Issue
Block a user