donaSuccess.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="music">
  5. <view class="player playing" :class="playing ? 'none' : 'keepgo'" @click.stop="play">
  6. <image src="../../static/img/music.png" style="width: 68rpx;height: 68rpx;" :animation="animationData"></image>
  7. </view>
  8. </view>
  9. <canvas v-if="showcanvas" id="qrShareBox" canvas-id="qrShareBox" class="tki-qrcode-canvas" />
  10. <image class="imgbox" v-else :src="img"></image>
  11. </view>
  12. <!-- <image class="image" src="../../static/img/thinks.png" mode=""></image> -->
  13. </view>
  14. </template>
  15. <script>
  16. import { weixindata } from '@/utils/wxAuthorized.js';
  17. export default {
  18. data() {
  19. return {
  20. money: '',
  21. url: '',
  22. img: '',
  23. showcanvas: true,
  24. loading: true, //是否载入图片中
  25. size: 180,
  26. ratio: 1, //页面比例用于计算
  27. canHeight: '',
  28. canWeidth: '',
  29. playing: true,
  30. current: {
  31. src: '../../static/audio/xx.mp3'
  32. },
  33. rotateIndex: '',
  34. animation: {},
  35. animationData: {},
  36. audioAction: {
  37. method: 'pause'
  38. },
  39. ran: -1,
  40. isStop: true,
  41. demo: 0,
  42. name: '',
  43. add_time: '',
  44. };
  45. },
  46. onReady() {
  47. let query = uni.createSelectorQuery();
  48. let obj = this;
  49. console.log(999, obj.money);
  50. // 获取页面比例
  51. query
  52. .select('.box')
  53. .fields(
  54. {
  55. size: true
  56. },
  57. e => {
  58. console.log('获取页面比例', e);
  59. // 保存比例
  60. this.ratio = e.width / 750;
  61. }
  62. )
  63. .exec();
  64. // 获取画布宽高信息
  65. query
  66. .select('#qrShareBox')
  67. .fields(
  68. {
  69. size: true
  70. },
  71. e => {
  72. console.log('获取画布宽高信息', e);
  73. obj.canHeight = e.height;
  74. obj.canWeidth = e.width;
  75. }
  76. )
  77. .exec();
  78. let ctxBg = '/static/img/thanks1.png'; //画布背景
  79. let src = '/static/icon/erweima.jpg'; // 二维码
  80. let src1 = '/static/icon/gongzhang.png'//公章
  81. let context = uni.createCanvasContext('qrShareBox');
  82. // 插入背景图片
  83. console.log('插入背景图片', ctxBg, 0, 0, obj.canWeidth, obj.canHeight);
  84. context.drawImage(ctxBg, 0, 0, obj.canWeidth, obj.canHeight);
  85. const codeSize = obj.size * obj.ratio; //计算二维码大小
  86. const codeX = ((750 - obj.size) * obj.ratio) / 2; //二维码所在x轴位置
  87. const codeY = 960 * obj.ratio; //二维码所在y轴位置
  88. const codeBoxColor = '#FFFFFF'; //包裹框颜色
  89. const codeBoxWidht = 0; //包裹边框宽度
  90. const codeBoxSize = (codeBoxWidht / 2) * obj.ratio; //计算二维码白色包裹框大小
  91. const codeBoxX = codeX - codeBoxSize; //包裹框初始X轴
  92. const codeBoxY = codeY - codeBoxSize; //包裹框初始Y轴
  93. const codeBoxEnd = codeSize + codeBoxWidht * obj.ratio; //计算包裹框大小
  94. const fontTop = codeY + codeBoxEnd + (codeBoxWidht + 20) * obj.ratio; //文字距离上边距高度
  95. const fontSize = 24 * obj.ratio; //文字大小
  96. const fontText = ''; //文字内容
  97. const fontLeft = (codeSize - fontSize * fontText.length) / 2 + codeX; //文字左侧距离
  98. // // 插入文字
  99. context.setFontSize(28);
  100. context.setFillStyle('#d5493b');
  101. context.fillText('捐赠证书', ((750 - obj.size) * obj.ratio) / 2, 260 * obj.ratio)
  102. context.setFontSize(30 * obj.ratio);
  103. context.fillText('尊敬的' + this.name + ':', 60 * obj.ratio, 350 * obj.ratio);
  104. context.fillText('衷心感谢您对嘉鱼县红十字事业的信任与支', 120 * obj.ratio, 410 * obj.ratio);
  105. context.fillText('持!我们已收到您的捐款', 60 * obj.ratio, 465 * obj.ratio);
  106. // 画横线
  107. context.moveTo(380 * obj.ratio, 470 * obj.ratio);
  108. context.lineTo(540 * obj.ratio, 470 * obj.ratio);
  109. context.stroke();
  110. context.setTextAlign('center')
  111. context.fillText('¥' + obj.money, 460 * obj.ratio, 465 * obj.ratio);
  112. context.setTextAlign('left')
  113. context.fillText('元。我们承', 540 * obj.ratio, 465 * obj.ratio);
  114. context.fillText('诺绝不辜负大家的信任,遵照您的意愿,将捐款', 60 * obj.ratio, 520 * obj.ratio);
  115. context.fillText('全部用于相关救助项目。您的善举将给受助人带', 60 * obj.ratio, 575 * obj.ratio);
  116. context.fillText('去温暖!', 60 * obj.ratio, 630 * obj.ratio);
  117. context.fillText('爱心无界,情义无价。授以此证书,我们因', 120 * obj.ratio, 680 * obj.ratio);
  118. context.fillText('您更有力量,因您倍感温暖!', 60 * obj.ratio, 735 * obj.ratio);
  119. // context.fillText('谨表谢意', (580 * obj.ratio), 680 * obj.ratio)
  120. // context.setTextAlign('right')
  121. context.fillText('嘉鱼县红十字会', 450 * obj.ratio, 850 * obj.ratio);
  122. context.fillText(obj.add_time, 450 * obj.ratio, 910 * obj.ratio);
  123. // 插入二维码
  124. // console.log(codeX, codeY, codeSize, 999)
  125. context.drawImage(src, codeX, codeY, codeSize, codeSize);
  126. // 插入公章
  127. context.drawImage(src1, 500 * obj.ratio, 750 * obj.ratio, codeSize, codeSize);
  128. // 生成
  129. context.draw(false, e => {
  130. uni.canvasToTempFilePath({
  131. x: 0,
  132. y: 0,
  133. width: obj.canWeidth,
  134. height: obj.canHeight,
  135. destWidth: obj.canWeidth,
  136. destHeight: obj.canHeight,
  137. canvasId: 'qrShareBox',
  138. success: function(res) {
  139. console.log(333, res);
  140. // 在H5平台下,tempFilePath 为 base64
  141. obj.showcanvas = false;
  142. obj.img = res.tempFilePath;
  143. }
  144. });
  145. });
  146. },
  147. onShow() {
  148. var animation = uni.createAnimation();
  149. this.animation = animation;
  150. if (this.isStop) {
  151. // 使用动画
  152. this.scaleAndScale();
  153. this.timer = setInterval(() => {
  154. //创建定时器,3秒执行异一次
  155. this.scaleAndScale();
  156. // console.log('每三秒执行一次 , 达到往复运动的效果')
  157. }, 1000);
  158. } else {
  159. this.noscaleAndScale();
  160. }
  161. },
  162. onLoad(option) {
  163. console.log(333, option);
  164. this.money = option.money;
  165. this.name = decodeURI(option.name) || '佚名'
  166. this.add_time =decodeURI(option.time)
  167. this.IndexShare();
  168. this.ScanAudio(true);
  169. },
  170. onHide() {
  171. //在页面隐藏时也要清除定时器
  172. if (this.timer) {
  173. // console.log('清除定时器-' + this.timer)
  174. clearInterval(this.timer);
  175. }
  176. },
  177. onUnload() {
  178. //在页面卸载时清除定时器 避免出现多个定时器连续创建动画
  179. if (this.timer) {
  180. console.log('清除定时器-' + this.timer);
  181. clearInterval(this.timer);
  182. }
  183. },
  184. methods: {
  185. // 分享
  186. IndexShare() {
  187. let obj = this;
  188. // let money = obj.money;
  189. let item = {
  190. link: this.$store.state.baseURL + '/index/#/pages/form/donaSuccess?money=' + obj.money + '&name=' + encodeURI(obj.name) + '&time=' + encodeURI(obj.add_time), // 分享链接
  191. imgUrl: this.$store.state.baseURL + '/index/static/img/002.png',
  192. desc: '弘扬红十字精神,传播红十字观念,宣传红十字工作,这是一个汇聚爱心、救助之家力量的平台!',
  193. title: '来自'+ this.$store.state.baseName + '的感谢信',
  194. success: console.log('分享加载成功')
  195. };
  196. console.log('分享加', item);
  197. weixindata(item);
  198. },
  199. musicClick() {
  200. // if (this.isRoate) {
  201. // this.isRoate = false
  202. // this.stopScanAudio()
  203. // } else {
  204. // this.isRoate = true
  205. // this.ScanAudio()
  206. // }
  207. },
  208. play() {
  209. this.playing = !this.playing;
  210. this.ScanAudio(this.playing);
  211. if (this.playing == true) {
  212. this.timer = setInterval(() => {
  213. //创建定时器,3秒执行异一次
  214. this.scaleAndScale();
  215. console.log('每1秒执行一次');
  216. }, 1000);
  217. } else {
  218. clearInterval(this.timer);
  219. }
  220. // var music = uni.createInnerAudioContext();
  221. // music.src= "../../static/audio/xx.mp3"; //选择播放的音频
  222. // music.onPause(); //暂停播放
  223. // console.log('暂停播放')
  224. // console.log('dianjizanting')
  225. // this.stopAudio()
  226. // this.playing = !this.playing; //背景音乐点击,暂停或继续
  227. },
  228. // 定义动画内容
  229. scaleAndScale() {
  230. // 定义动画内容
  231. // this.animation.scale(1.2, 1.2).step() //先放大1,2倍
  232. // this.animation.scale(1, 1).step() //缩小至原来的大小
  233. // 导出动画数据传递给data层
  234. // this.animationData = this.animation.export(); //每次执行导出动画时 会覆盖之前的动画
  235. this.animation.rotate(this.demo).step({
  236. duration: 1000
  237. });
  238. this.animationData = this.animation.export();
  239. this.demo += 360;
  240. },
  241. noscaleAndScale() {
  242. this.animation.rotate(0).step({
  243. duration: 1000
  244. });
  245. this.animationData = this.animation.export();
  246. }
  247. // ScanAudio(){
  248. // this.$api.music.play(); //执行播放
  249. // console.log('执行播放')
  250. // }
  251. }
  252. };
  253. </script>
  254. <style lang="scss">
  255. page {
  256. width: 100%;
  257. height: 100%;
  258. }
  259. .content {
  260. // background-color: pink;
  261. width: 100%;
  262. height: 100%;
  263. position: relative;
  264. .bgimg {
  265. width: 100%;
  266. height: 100%;
  267. // background-color: pink;
  268. image {
  269. width: 100%;
  270. height: 100%;
  271. }
  272. }
  273. .tki-qrcode-canvas {
  274. width: 750rpx;
  275. height: 1350rpx;
  276. margin: 0 auto;
  277. // background-color: pink;
  278. }
  279. .box {
  280. // position: absolute;
  281. // left: 0;
  282. // top: 0;
  283. // background-color: pink;
  284. // width: 100%;
  285. // height: 100%;
  286. // display: flex;
  287. // flex-direction: column;
  288. // align-items: center;
  289. // color: #FFFFFF;
  290. // padding: 0rpx 32rpx 0 32rpx;
  291. color: #ffffff;
  292. width: 100%;
  293. height: 100vh;
  294. // background-color: pink;
  295. .music {
  296. // width: 55rpx;
  297. // height: 55rpx;
  298. border-radius: 28rpx;
  299. // background-color: pink;
  300. position: absolute;
  301. left: 40rpx;
  302. top: 100rpx;
  303. z-index: 999;
  304. }
  305. // .title {
  306. // margin-top: 234rpx;
  307. // font-size: 54rpx;
  308. // }
  309. // .main {
  310. // margin-top: 20rpx;
  311. // font-size: 32rpx;
  312. // .box-2 {
  313. // text-indent: 68rpx;
  314. // margin-top: 12rpx;
  315. // }
  316. // }
  317. // .footer {
  318. // margin-top: 32rpx;
  319. // // background-color: pink;
  320. // width: 100%;
  321. // .box-1 {
  322. // display: flex;
  323. // justify-content: flex-end;
  324. // font-size: 28rpx;
  325. // // padding-right: 14rpx;
  326. // }
  327. // }
  328. }
  329. // .playing {
  330. // animation: run 10s linear 0s infinite;
  331. // }
  332. // .player {
  333. // width: 65rpx;
  334. // height: 65rpx;
  335. // border-radius: 50%;
  336. // background-color: rgba(0, 0, 0, 0.1);
  337. // z-index: 999999;
  338. // }
  339. .keepgo {
  340. animation-play-state: paused;
  341. }
  342. .imgbox {
  343. height: 1350rpx;
  344. width: 750rpx;
  345. }
  346. }
  347. .image {
  348. width: 100%;
  349. height: 100%;
  350. }
  351. </style>