- ver 1.2.47 :

- corretto errore di modifica scheda
- aggiunto scraping (fase 1)
This commit is contained in:
Surya Paolo
2025-05-16 10:26:29 +02:00
parent b7ecd60fc3
commit 810815a12a
23 changed files with 103 additions and 80 deletions

View File

@@ -51,9 +51,9 @@ export default defineComponent({
default: '',
},
type: {
type: String,
type: Number,
required: false,
default: '',
default: 0,
},
canModify: {
type: Boolean,
@@ -141,8 +141,12 @@ export default defineComponent({
position: 'top'
});
});
};
}
function handleShowAndSave(payload: any) {
Savedb(payload);
updateproductmodif(payload);
}
onMounted(mounted)
@@ -162,7 +166,7 @@ export default defineComponent({
loading,
copyToClipboard,
myvalue,
// refreshDataFromGM,
handleShowAndSave,
}
}
})