項目開發須要,優惠券分不一樣類型,簡單的使用id生成條形碼供店鋪使用,麻煩點的須要多個字段的就須要使用二維碼來展現了,對應的效果以下
css
需引入code128.js 和對應的 code123.css, 具體代碼能夠看 https://www.jb51.net/article/103472.htm
因爲項目是vue開發,因此code128.js 稍微改一下,export 出createBarcode接口vue
export default function createBarcode(showDiv,textValue,barcodeType){ var divElement = document.getElementById(showDiv); divElement.innerHTML = code128(textValue,barcodeType); }
import createBarcode from '@/utils/code128' 調用: createBarcode("barcodeDiv", this.couponInfo.data.id, 'B', true)
npm install qrcodejs2 --save 調用 import QRCode from 'qrcodejs2' new QRCode(document.getElementById('qrcode'), { width: 120, height: 120, text: `{"customeruid":${this.couponInfo.data.customerUid}, "shoppingcarduid": ${this.couponInfo.data.UId}}` //二維碼保存內容 })
具體參數看文檔吧~npm