recommend.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <view>
  3. <image src="../../static/bg.png" mode="" class="bg"></image>
  4. <view class="" style="padding: 30rpx;position: relative;">
  5. <image :src="poster" style="width: 690rpx;height: 920rpx"></image>
  6. <image :src="qrcode" mode="" style="width: 120rpx;height: 120rpx;position: absolute;right: 40rpx;bottom: 56rpx;"></image>
  7. </view>
  8. <view class="" style="margin: 30rpx auto 40rpx;width: 610rpx;" @click="storageImg">
  9. <u-button text="保存图片" shape="circle" color="linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%)"></u-button>
  10. </view>
  11. <view class="" style="margin:0 auto;width: 610rpx;">
  12. <u-button type="error" :plain="true" openType="share" shape="circle" text="马上邀请好友"></u-button>
  13. </view>
  14. <canvas canvas-id="shareCanvas" style="width: 690px;height: 920px;position: fixed;top: -1000px;left: 1000px;z-index: 99;"></canvas>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. onLoad() {
  20. this.getInfo()
  21. },
  22. data() {
  23. return {
  24. poster:'',
  25. qrcode:'',
  26. canvas: null,
  27. }
  28. },
  29. methods: {
  30. storageImg(){
  31. this.drawCanvas()
  32. },
  33. // 封装的下载图片函数
  34. downLoadImage(url) {
  35. return new Promise((resolve, reject) => {
  36. wx.getImageInfo({
  37. src: url,
  38. success(res) {
  39. resolve(res.path)
  40. },
  41. fail(err) {
  42. reject(err)
  43. },
  44. complete() {
  45. console.log('complete')
  46. }
  47. })
  48. })
  49. },
  50. drawCircular(ctx,width, height, x, y, url) {
  51. var avatarurl_width = width;
  52. var avatarurl_heigth = height;
  53. var avatarurl_x = x;
  54. var avatarurl_y = y;
  55. ctx.save();
  56. ctx.beginPath();
  57. ctx.arc(avatarurl_width / 2 + avatarurl_x, avatarurl_heigth / 2 + avatarurl_y, avatarurl_width / 2, 0, Math.PI * 2, false);
  58. ctx.clip();
  59. ctx.drawImage(url, avatarurl_x, avatarurl_y, avatarurl_width, avatarurl_heigth);
  60. ctx.restore();
  61. },
  62. //第一个参数:创建的画布对象
  63. //第二个参数:矩形的宽
  64. //第三个参数:矩形的高
  65. //第四个参数:矩形左上角x轴坐标点,
  66. //第五个参数:矩形左上角y轴坐标点,
  67. //第六个参数:绘制的图片的URL
  68. drawCanvas(){
  69. uni.showLoading({
  70. })
  71. var that=this
  72. let ctx = wx.createCanvasContext('shareCanvas', this)
  73. let productImage = this.downLoadImage(this.poster);
  74. let erCodeImage = this.downLoadImage(this.qrcode);
  75. Promise.all([productImage, erCodeImage]).then(imgs => {
  76. console.log('imgs', imgs)
  77. // 全部图片下载成功
  78. let bgWidth = 690;
  79. let bgHeight = 920;
  80. // 绘制白底背景
  81. ctx.setFillStyle('#fff')
  82. ctx.fillRect(0, 0, bgWidth, bgHeight)
  83. console.log('全部图片下载成功')
  84. // 绘制产品图片
  85. let productOffLeft = 0;
  86. let productOffTop = 0;
  87. let productWidth = 690;
  88. let productHeight = 920;
  89. ctx.drawImage(imgs[0], productOffLeft, productOffTop, productWidth, productHeight)
  90. console.log('imgs', imgs[2])
  91. ctx.drawImage(imgs[1], 530 , 780, 120, 120),
  92. ctx.draw(true, () => {
  93. wx.hideLoading();
  94. // wx.showLoading({
  95. // title: '保存中',
  96. // icon: 'none'
  97. // })
  98. let _this = this;
  99. wx.canvasToTempFilePath({
  100. x: 0,
  101. y: 0,
  102. canvasId: 'shareCanvas',
  103. quality: 1.0,
  104. fileType: 'jpg',
  105. success(res) {
  106. console.log('生成图片成功')
  107. console.log('res', res.tempFilePath)
  108. that.saveImage(res.tempFilePath)
  109. wx.hideLoading()
  110. },
  111. fail(err) {
  112. console.log('err', err)
  113. wx.showToast({
  114. title: '图片生成失败',
  115. icon: 'none',
  116. })
  117. },
  118. complete() {
  119. }
  120. }, _this)
  121. })
  122. }).catch(err => {
  123. console.log(err)
  124. })
  125. },
  126. // 保存图片
  127. saveImage(url) {
  128. let _this = this;
  129. // let tempFilePath = this.data.tempFilePath;
  130. if (!url) {
  131. wx.showToast({
  132. title: '图片生成失败',
  133. icon: 'none',
  134. })
  135. return;
  136. }
  137. wx.saveImageToPhotosAlbum({
  138. filePath: url,
  139. success() {
  140. _this.showShare=false
  141. wx.showToast({
  142. title: '已保存到相册,您可将图片分享到朋友圈',
  143. icon: 'none'
  144. })
  145. },
  146. fail() {
  147. wx.showToast({
  148. title: '图片保存失败',
  149. icon: 'none',
  150. })
  151. },
  152. complete() {
  153. // wx.hideLoading();
  154. }
  155. })
  156. },
  157. getInfo(){
  158. uni.$u.http.post('/api/Publics/config_info').then(res => {
  159. if(res.code==1){
  160. this.poster=res.data.poster
  161. this.qrcode=res.data.applet_code
  162. }
  163. })
  164. }
  165. }
  166. }
  167. </script>
  168. <style>
  169. page{
  170. padding-bottom: 50rpx;
  171. }
  172. </style>