diff --git a/src/views/modules/production/print_serialNo_label.js b/src/views/modules/production/print_serialNo_label.js index 2f0e1fd..bc5182a 100644 --- a/src/views/modules/production/print_serialNo_label.js +++ b/src/views/modules/production/print_serialNo_label.js @@ -12,12 +12,12 @@ export function printMaterialLabel(printList) { let printData = printList[i]; LODOP.NewPage(); LODOP.SET_PRINT_PAGESIZE(0,300,200,""); - LODOP.ADD_PRINT_TEXT(59,21,72,35,printData.serialNo); + LODOP.ADD_PRINT_TEXT(52,21,72,35,printData.serialNo); LODOP.SET_PRINT_STYLEA(0,"FontName","黑体"); - LODOP.SET_PRINT_STYLEA(0,"FontSize",8); + LODOP.SET_PRINT_STYLEA(0,"FontSize",9); LODOP.SET_PRINT_STYLEA(0,"Alignment",2); LODOP.SET_PRINT_STYLEA(0,"LineSpacing",-5); - LODOP.ADD_PRINT_BARCODE(1,26,108,69,"QRCode",printData.serialNo); + LODOP.ADD_PRINT_BARCODE(3,31,86,61,"QRCode",printData.serialNo); } // LODOP.PRINT_DESIGN();