ver: 1.1.21:
- Lista dei Cataloghi - Gestione Cataloghi in base alla configurazione
This commit is contained in:
@@ -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",
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user