index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <template>
  2. <view>
  3. <painter style="position: absolute; top: -9999rpx" :palette="imgDraw" @imgOK="onImgOK" />
  4. </view>
  5. </template>
  6. <script>
  7. import painter from '@/component/painter/painter';
  8. export default {
  9. components: {
  10. painter
  11. },
  12. data() {
  13. return {
  14. imgDraw: {},
  15. // 绘制图片的大对象
  16. sharePath: '' // 生成的分享图
  17. };
  18. },
  19. props: {
  20. // 是否开始绘图
  21. isCanDraw: {
  22. type: Boolean,
  23. default: false
  24. },
  25. qrCode: {
  26. type: String,
  27. default: ''
  28. },
  29. headimg: {
  30. type: String,
  31. default: ''
  32. }
  33. },
  34. methods: {
  35. handleStartDrawImg() {
  36. uni.showLoading({
  37. title: '生成中'
  38. });
  39. this.setData({
  40. imgDraw: {
  41. width: '500rpx',
  42. height: '890rpx',
  43. background: 'https://qiniu.bms16.com/appsrc%2Fhire%2Finvite_%20posters.png',
  44. views: [
  45. {
  46. type: 'image',
  47. url: this.headimg,
  48. css: {
  49. top: '780rpx',
  50. left: '40rpx',
  51. width: '80rpx',
  52. height: '80rpx',
  53. borderRadius: '40rpx'
  54. }
  55. },
  56. {
  57. type: 'image',
  58. url: this.qrCode,
  59. css: {
  60. top: '765rpx',
  61. right: '30rpx',
  62. width: '110rpx',
  63. height: '110rpx'
  64. }
  65. },
  66. {
  67. type: 'text',
  68. text: `长按扫描识别二维码`,
  69. css: {
  70. top: '792rpx',
  71. left: '140rpx',
  72. fontSize: '20rpx',
  73. color: '#858C93'
  74. }
  75. },
  76. {
  77. type: 'text',
  78. text: `扫码赢取积分兑换奖励`,
  79. css: {
  80. top: '822rpx',
  81. left: '140rpx',
  82. fontSize: '20rpx',
  83. color: '#858C93'
  84. }
  85. } // {
  86. // type: 'text',
  87. // text: `宇宙最萌蓝牙耳机测评员`,
  88. // css: {
  89. // top: '644rpx',
  90. // left: '375rpx',
  91. // maxLines: 1,
  92. // align: 'center',
  93. // fontWeight: 'bold',
  94. // fontSize: '44rpx',
  95. // color: '#3c3c3c'
  96. // }
  97. // },
  98. // {
  99. // type: 'image',
  100. // url: 'https://qiniu-image.qtshe.com/20190605index.jpg',
  101. // css: {
  102. // top: '834rpx',
  103. // left: '470rpx',
  104. // width: '200rpx',
  105. // height: '200rpx'
  106. // }
  107. // }
  108. ]
  109. }
  110. });
  111. },
  112. onImgErr(e) {
  113. uni.hideLoading();
  114. uni.showToast({
  115. title: '生成分享图失败,请刷新页面重试'
  116. }); //通知外部绘制完成,重置isCanDraw为false
  117. this.$emit('initData');
  118. },
  119. onImgOK(e) {
  120. uni.hideLoading(); // 展示分享图
  121. uni.showShareImageMenu({
  122. path: e.detail.path,
  123. fail: (err) => {
  124. }
  125. }); //通知外部绘制完成,重置isCanDraw为false
  126. this.$emit('initData');
  127. }
  128. },
  129. watch: {
  130. isCanDraw: {
  131. handler: function (newVal) {
  132. if (newVal) {
  133. this.handleStartDrawImg();
  134. }
  135. },
  136. immediate: true
  137. }
  138. }
  139. };
  140. </script>
  141. <style>
  142. @import './index.css';
  143. </style>