index.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <script type="text/javascript">
  7. /**
  8. * URL参数转换为对象
  9. */
  10. Location.prototype.searchObj = function(url) {
  11. var obj = {};
  12. var arr = (url || this.search).match(/[?&][^?&]+=[^?&]+/g);
  13. if (arr) {
  14. arr.forEach(function(item) {
  15. var tempArr = item.substring(1).split('=');
  16. obj[decodeURIComponent(tempArr[0])] = decodeURIComponent(tempArr[1]);
  17. length++;
  18. });
  19. }
  20. return obj;
  21. }
  22. </script>
  23. <style type="text/css">
  24. #credTpl {
  25. overflow: hidden;
  26. position: fixed;
  27. padding: 0;
  28. margin: 0;
  29. border: 0;
  30. height: 0;
  31. width: 0;
  32. top: 0;
  33. left: 0;
  34. }
  35. .showImg{
  36. position: fixed;
  37. padding: 0;
  38. margin: 0;
  39. border: 0;
  40. top: 1%;
  41. left: 5%;
  42. bottom: 18%;
  43. right: 5%;
  44. }
  45. #showImg {
  46. position: absolute;
  47. padding: 0;
  48. margin: 0;
  49. border: 0;
  50. top: 0;
  51. left: 0;
  52. bottom: 0;
  53. right: 0;
  54. width: 100%;
  55. height: 100%;
  56. }
  57. </style>
  58. </head>
  59. <body>
  60. <div class="showImg">
  61. <img src="bg.png" id="showImg">
  62. </div>
  63. <iframe id="credTpl" name="credTpl" src="credTpl.html"></iframe>
  64. </body>
  65. <script type="text/javascript">
  66. window.parent.uni && window.parent.uni.showLoading({
  67. title: '证书生成中'
  68. });
  69. let imgSrcFun = function() {};
  70. let showimg = function() {
  71. window.parent.uni && window.parent.uni.previewImage({
  72. current: 0,
  73. urls: [imgSrcFun]
  74. });
  75. }
  76. let iframeOnload = function() {
  77. //框架加载成功
  78. let getE = function(e) {
  79. let data = {};
  80. //获取参数
  81. if (e.key) {
  82. try {
  83. const value = window.parent.uni.getStorageSync(e.key);
  84. if (value) {
  85. data = value;
  86. }
  87. } catch (e) {
  88. }
  89. }
  90. return data;
  91. }
  92. //取得证书信息缓存
  93. let obj = getE(location.searchObj());
  94. let credTpl = window.frames['credTpl'].window; //获取证书框架window
  95. let mycertificate = new credTpl.certificate({ //生成图片
  96. format: 'jpg',
  97. data: {
  98. code: obj.credentialNo || '', //编号
  99. name: obj.companyName || obj.customerName || obj.nickName || '匿名用户', //购买者名字
  100. co2: obj.carbonAmount || 0, //碳汇量
  101. credit: obj.carbonAmount || 0, //碳信用额
  102. integral: obj.carbonAmount || 0, //碳积分
  103. money: obj.orderAmount || 0, //购买多少钱
  104. date: obj.buyDate || '' //购买日期
  105. },
  106. success: function(_function) {
  107. imgSrcFun = _function('data');
  108. document.getElementById('showImg').src = imgSrcFun; //预览图片
  109. window.parent.uni && window.parent.uni.hideLoading();
  110. }
  111. });
  112. mycertificate.down('A0');
  113. };
  114. /**
  115. * 证书框架加载完毕开始生成
  116. */
  117. let iframe = document.getElementById("credTpl");
  118. if (iframe.attachEvent) {
  119. iframe.attachEvent("onload", iframeOnload);
  120. } else {
  121. iframe.onload = iframeOnload;
  122. }
  123. </script>
  124. </html>