shareQrCode.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <template>
  2. <view class="content">
  3. <!-- <view class="qrimg">
  4. <tki-qrcode
  5. :cid="cid"
  6. ref="qrcode"
  7. :val="val"
  8. :size="size"
  9. :unit="unit"
  10. :background="background"
  11. :foreground="foreground"
  12. :pdground="pdground"
  13. :icon="icon"
  14. :iconSize="iconSize"
  15. :lv="lv"
  16. :onval="onval"
  17. :loadMake="loadMake"
  18. :usingComponents="usingComponents"
  19. @result="qrR"
  20. />
  21. </view> -->
  22. <!-- #ifndef MP-ALIPAY -->
  23. <canvas :class="{ qrimg: !loading }" @longtap="alertCanv" id="qrShareBox" canvas-id="qrShareBox" class="tki-qrcode-canvas" />
  24. <!-- #endif -->
  25. <!-- #ifdef MP-ALIPAY -->
  26. <canvas :class="{ qrimg: !loading }" @longtap="alertCanv" id="qrShareBox" class="tki-qrcode-canvas" />
  27. <!-- #endif -->
  28. <view :style="{ display: loading ? 'none' : 'block' }" class="tki-qrcode-canvas"><image :src="ctxSrc" mode="scaleToFill" class="tki-qrcode-canvas"></image></view>
  29. <view class="share-bottom flex" :class="{ 'action-share-bottom': !loading }" @click="loading ? showImg() : ''">
  30. <text>{{ loading ? '点击生成图片' : '长按二维码下载' }}</text>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. // import tkiQrcode from '@/components/tki-qrcode/tki-qrcode.vue';
  36. import { spreadBanner } from '@/api/user.js';
  37. export default {
  38. // components: { tkiQrcode },
  39. data() {
  40. return {
  41. cid: 'tki-qrcode-canvas', //canvasId,页面存在多个二维码组件时需设置不同的ID
  42. size: 180, //生成的二维码大小
  43. unit: 'upx', //大小单位尺寸
  44. // show: true,//默认使用组件中的image标签显示二维码
  45. val: '', //要生成的内容
  46. background: '#ffffff', //二维码背景色
  47. foreground: '#333333', //二维码前景色
  48. pdground: '#333333', //二维码角标色
  49. icon: '', //二维码图标URL(必须是本地图片,网络图需要先下载至本地)
  50. iconSize: 40, //二维码图标大小
  51. lv: 3, //容错级别
  52. onval: false, //监听val值变化自动重新生成二维码
  53. loadMake: false, //组件初始化完成后自动生成二维码,val需要有值
  54. usingComponents: false, //是否使用了自定义组件模式(主要是为了修复非自定义组件模式时 v-if 无法生成二维码的问题)
  55. showLoading: false, //是否显示loading
  56. loadingText: '二维码生成中', //loading文字
  57. src: '', // 二维码生成后的图片地址或base64
  58. ratio: 1, //页面比例用于计算
  59. ctxSrc: '', //要显示的图片
  60. loading: true,//是否载入图片中
  61. canHeight: '',//画布高度
  62. canWeidth: ''//画布宽度
  63. };
  64. },
  65. onLoad() {
  66. this.loadCodeList()
  67. },
  68. onReady() {
  69. let obj = this;
  70. let query = uni.createSelectorQuery();
  71. // 获取页面比例
  72. query
  73. .select('.content')
  74. .fields(
  75. {
  76. size: true
  77. },
  78. e => {
  79. // 保存比例
  80. this.ratio = e.width / 750;
  81. }
  82. )
  83. .exec();
  84. // 获取画布宽高信息
  85. query
  86. .select('#qrShareBox')
  87. .fields(
  88. {
  89. size: true
  90. },
  91. e => {
  92. // 保存画布宽高信息
  93. obj.canHeight = e.height;
  94. obj.canWeidth = e.width;
  95. }
  96. )
  97. .exec();
  98. },
  99. methods: {
  100. loadCodeList() {
  101. // 加载二维码信息
  102. spreadBanner({
  103. // #ifdef H5
  104. type: 2,
  105. // #endif
  106. // #ifdef MP
  107. type: 1
  108. // #endif
  109. }).then(e => {
  110. // #ifdef MP
  111. // 保存二维码图片
  112. uni.downloadFile({
  113. url: e.data[0].wap_posterQr,
  114. success(res) {
  115. if (res.errMsg == 'downloadFile:ok') {
  116. obj.src = res.tempFilePath;
  117. // 生成画布
  118. obj.loadImg(obj.src);
  119. uni.hideLoading();
  120. }
  121. console.log(res);
  122. },
  123. fail(e) {
  124. console.log(e);
  125. }
  126. })
  127. // #endif
  128. // #ifdef H5
  129. // 保存二维码图片
  130. this.src = e.data[0].wap_posterQr;
  131. // 生成画布
  132. this.loadImg(e.data[0].wap_posterQr);
  133. // #endif
  134. }).catch((e) => {
  135. uni.showModal({
  136. title: '生成失败请刷新页面',
  137. showCancel: false
  138. });
  139. uni.hideLoading();
  140. });;
  141. },
  142. // 长按画布事件
  143. alertCanv() {
  144. uni.showModal({
  145. title: '请先点击生成图片再下载',
  146. showCancel: false
  147. });
  148. },
  149. // 生成图片
  150. showImg() {
  151. uni.showLoading({
  152. title: '图片生成中',
  153. mask: true
  154. });
  155. let obj = this;
  156. //因为和uni.showLoading载入效果冲突需要延迟执行生成图片方法
  157. setTimeout(function() {
  158. uni.canvasToTempFilePath({
  159. x: 0,
  160. y: 0,
  161. width: obj.canWeidth,
  162. height: obj.canHeight,
  163. destWidth: obj.canWeidth,
  164. destHeight: obj.canHeight,
  165. fileType: 'jpg',
  166. quality: 1,
  167. canvasId: 'qrShareBox',
  168. success: res => {
  169. uni.hideLoading();
  170. uni.showModal({
  171. title: '创建成功,长按二维码下载图片',
  172. showCancel: false
  173. });
  174. // 显示生成的图片
  175. obj.loading = false;
  176. // 保存图片base64
  177. obj.ctxSrc = res.tempFilePath;
  178. },
  179. fail(e) {
  180. console.log(e);
  181. }
  182. });
  183. }, 50);
  184. },
  185. // 开始渲染画布
  186. loadImg(src) {
  187. const obj = this;
  188. const cavWidth=523;//画布宽度
  189. const cavHeight=700;//画布高度
  190. const ratio = obj.ratio;//获取页面比例
  191. const ctxBg = '/static/img/img14.jpg'; //画布背景
  192. let context = uni.createCanvasContext('qrShareBox');
  193. const codeSize = obj.size * ratio; //计算二维码大小
  194. const codeX = ((cavWidth - obj.size) * ratio) / 2; //二维码所在x轴位置
  195. const codeY = cavHeight * ratio; //二维码所在y轴位置
  196. const codeBoxColor = '#FFFFFF'; //包裹框颜色
  197. const codeBoxWidht = 0; //包裹边框宽度
  198. const codeBoxSize = (codeBoxWidht / 2) * ratio; //计算二维码白色包裹框大小
  199. const codeBoxX = codeX - codeBoxSize; //包裹框初始X轴
  200. const codeBoxY = codeY - codeBoxSize; //包裹框初始Y轴
  201. const codeBoxEnd = codeSize + codeBoxWidht * ratio; //计算包裹框大小
  202. const fontTop = codeY + codeBoxEnd + (codeBoxWidht + 20) * this.ratio; //文字距离上边距高度
  203. const fontSize = 24 * ratio; //文字大小
  204. const fontText = ''; //文字内容
  205. const fontLeft = (codeSize - fontSize * fontText.length) / 2 + codeX; //文字左侧距离
  206. // 插入背景图片
  207. context.drawImage(ctxBg, 0, 0, obj.canWeidth, obj.canHeight);
  208. // // 插入文字
  209. context.setFontSize(fontSize);
  210. context.fillText(fontText, fontLeft, fontTop);
  211. // 插入边框
  212. context.beginPath();//开始画线
  213. context.setLineJoin('round'); //边框类型
  214. context.setLineWidth(codeBoxWidht * ratio);
  215. context.setStrokeStyle(codeBoxColor); //设置包裹框颜色
  216. context.strokeRect(codeBoxX, codeBoxY, codeBoxEnd, codeBoxEnd);
  217. context.stroke();//渲染线条
  218. // 插入二维码
  219. context.drawImage(src, codeX, codeY, codeSize, codeSize);
  220. // 开始渲染
  221. context.draw();
  222. },
  223. // 創建二维码
  224. creatQrcode() {
  225. this.$refs.qrcode._makeCode();
  226. },
  227. // 保存二维码到图库
  228. saveQrcode() {
  229. this.$refs.qrcode._saveCode();
  230. },
  231. // 生成二维码后返回base64
  232. qrR(res) {
  233. this.src = res;
  234. },
  235. //清空二维码(清空二维码会触发result回调 返回值为空)
  236. clearQrcode(e) {
  237. this.$refs.qrcode._clearCode();
  238. this.val = '';
  239. }
  240. }
  241. };
  242. </script>
  243. <style lang="scss">
  244. .content {
  245. padding-top: 30rpx;
  246. }
  247. // #qrShareBox {
  248. // position: absolute;
  249. // left: -9999rpx;
  250. // top: -9999rpx;
  251. // }
  252. .qrimg {
  253. position: absolute;
  254. left: -9999rpx;
  255. top: -9999rpx;
  256. }
  257. .tki-qrcode-canvas {
  258. // width: 700rpx;
  259. // height: 1245rpx;
  260. width: 532rpx;
  261. height: 945rpx;
  262. margin: 0 auto;
  263. }
  264. .share-bottom {
  265. width: 560rpx;
  266. height: 80rpx;
  267. color: #ffffff;
  268. background-color: $base-color;
  269. margin: 0 auto;
  270. font-size: $font-lg - 2rpx;
  271. margin-top: 30rpx;
  272. border-radius: 99rpx;
  273. justify-content: center;
  274. &.action-share-bottom {
  275. background-color: $color-gray;
  276. }
  277. }
  278. </style>