yz-qr.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <view>
  3. <view class="qrcode">
  4. <canvas :style="{width:size+ 'px', height:size+ 'px', background:bgc}" canvas-id="couponQrcode"></canvas>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. const qrCode = require('./weapp-qrcode.js')
  10. export default {
  11. data() {
  12. return {
  13. bgc: 'rgba(200, 200, 200, 0.1)', //测试画布是否与内容相同大小
  14. canvasQrPath: this.qrPath, //
  15. level: ''
  16. }
  17. },
  18. props: {
  19. text: {
  20. type: String,
  21. default: 'hello'
  22. },
  23. size: {
  24. type: Number,
  25. default: 200
  26. },
  27. quality: {
  28. type: String,
  29. default: 'L' //二维码质量L/M/Q/H
  30. },
  31. colorDark: {
  32. type: String,
  33. default: '#000000'
  34. },
  35. colorLight: {
  36. type: String,
  37. default: '#ffffff'
  38. },
  39. qrPath: {
  40. type: String,
  41. default: ''
  42. }
  43. },
  44. // 在实例挂载完成后被立即调用
  45. mounted() { //兼容非动态取值(二维码为固定内容)
  46. this.couponQrCode()
  47. },
  48. watch: {
  49. text(newVal, oldVal) { //监测到text值发生改变时重新绘制
  50. // console.log('最新值是:' + newVal, "原来的值是:" + oldVal);
  51. this.couponQrCode()
  52. }
  53. },
  54. methods: {
  55. // 二维码生成工具
  56. couponQrCode() {
  57. var that = this;
  58. if (this.quality == 'L') {
  59. this.level = qrCode.CorrectLevel.L
  60. } else if (this.quality == 'M') {
  61. this.level = qrCode.CorrectLevel.M
  62. } else if (this.quality == 'Q') {
  63. this.level = qrCode.CorrectLevel.Q
  64. } else if (this.quality == 'H') {
  65. this.level = qrCode.CorrectLevel.H
  66. } else {
  67. this.level = qrCode.CorrectLevel.L
  68. }
  69. new qrCode('couponQrcode', {
  70. text: this.text,
  71. width: this.size,
  72. height: this.size,
  73. showLoading: true, // 是否显示loading
  74. loadingText: '二维码生成中', // loading文字
  75. colorDark: this.colorDark, //二维码暗部颜色
  76. colorLight: this.colorLight, //二维码亮部颜色
  77. correctLevel: this.level, //二维码质量L/M/Q/H
  78. usingIn: this //在自定义组件下,第二个参数传入组件实例this
  79. })
  80. // 把当前画布指定区域的内容导出生成图片,并返回文件路径。
  81. uni.canvasToTempFilePath({
  82. canvasId: 'couponQrcode',
  83. success: (res) => {
  84. // 在H5平台下,tempFilePath 为 base64
  85. // console.log('yz-qr图片路径:', res.tempFilePath)
  86. this.canvasQrPath = res.tempFilePath
  87. this.$emit('update:qrPath', this.canvasQrPath)
  88. }
  89. }, this);
  90. console.log('绘制完成');
  91. }
  92. }
  93. }
  94. </script>
  95. <style>
  96. .qrcode {
  97. padding: 24rpx;
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. }
  102. </style>