barcode.js 359 B

123456789101112131415
  1. import JsBarcode from 'jsbarcode'
  2. window.setBarcode = function setBarcode(val, dom='barcode', width=2, height=40, isShowValue=false){
  3. if (!val)return;
  4. JsBarcode(dom, val, {
  5. format: 'CODE39',
  6. lineColor: '#000',
  7. background: '#ffffff',
  8. width: width,
  9. height: height,
  10. displayValue: isShowValue
  11. });
  12. };