Circuits...
Circuits Fido e Max Qta Fixed error eslint: 7.0.0 is OK
This commit is contained in:
@@ -685,6 +685,9 @@ export default defineComponent({
|
||||
} else if (props.table === 'mygroups') {
|
||||
if (myrow.value.hasOwnProperty('groupname'))
|
||||
ris = 'mygroups/' + myrow.value['groupname']
|
||||
} else if (props.table === 'circuits') {
|
||||
if (myrow.value.hasOwnProperty('path'))
|
||||
ris = 'circuits/' + myrow.value['path']
|
||||
} else if (!!myrow.value && !!myrow.value.directory) {
|
||||
ris = myrow.value.directory
|
||||
} else {
|
||||
|
||||
@@ -85,7 +85,8 @@
|
||||
@keyup.enter.stop
|
||||
@update:model-value="changevalRec"
|
||||
autofocus
|
||||
:label="col.label">
|
||||
:label="col.visulabel ? t(col.label_trans) : (col.label)"
|
||||
>
|
||||
</q-input>
|
||||
</div>
|
||||
<div v-else-if="col.tipovisu === costanti.TipoVisu.TESTO_BORDATO" :class="{ flex: !isInModif}">
|
||||
@@ -118,10 +119,11 @@
|
||||
<div v-if="canEdit || isInModif">
|
||||
<q-input
|
||||
v-bind="$attrs"
|
||||
debounce="1000"
|
||||
v-model="myvalue"
|
||||
:maxlength="col.maxlength ? col.maxlength : undefined"
|
||||
@update:model-value="Savedb"
|
||||
:label="visulabel ? t(col.label_trans) : ''"
|
||||
:label="col.visulabel ? t(col.label_trans) : (visulabel ? t(col.label_trans) : '')"
|
||||
type="number"
|
||||
autofocus>
|
||||
|
||||
@@ -615,6 +617,7 @@
|
||||
:maxlength="col.maxlength ? col.maxlength : undefined"
|
||||
:minlength="col.minlength ? col.minlength : undefined"
|
||||
v-model="scope.value"
|
||||
:label="col.visulabel ? t(col.label_trans) :''"
|
||||
:autogrow="col.fieldtype !== costanti.FieldType.crypted"
|
||||
@keyup.enter.stop
|
||||
autofocus>
|
||||
@@ -625,9 +628,11 @@
|
||||
<div v-if="visulabel">
|
||||
<q-input
|
||||
v-model="scope.value" type="number"
|
||||
debounce="1000"
|
||||
:maxlength="col.maxlength ? col.maxlength : undefined"
|
||||
autofocus
|
||||
:label="visulabel ? col.label : ''">
|
||||
:label="col.visulabel ? t(col.label_trans) : (visulabel ? col.label : '')"
|
||||
>
|
||||
|
||||
</q-input>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user