ver: 1.1.21:

- Lista dei Cataloghi
- Gestione Cataloghi in base alla configurazione
This commit is contained in:
Surya Paolo
2025-02-10 22:48:53 +01:00
parent 4da257e43a
commit 3d0e307e42
85 changed files with 1419 additions and 547 deletions

View File

@@ -40,19 +40,19 @@ export default defineComponent({
default: false,
},
height: {
type: Number,
type: String,
required: false,
default: 100,
default: '100',
},
gap: {
type: Number,
type: String,
required: false,
default: 0,
default: '0',
},
fontsize: {
type: Number,
type: String,
required: false,
default: 16,
default: '16',
},
},
setup(props, { emit }) {
@@ -68,14 +68,14 @@ export default defineComponent({
JsBarcode("#C" + value.value, value.value, {
format: format.value,
width: widthlines.value,
height: height.value,
height: tools.convstrToNum(height.value),
displayValue: true,
lineColor: "#000",
font: "monospace",
margin: 0,
textMargin: 0,
marginTop: 0,
fontSize: fontsize.value,
fontSize: tools.convstrToNum(fontsize.value),
textPosition: "bottom",
});
}