certificate.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <view class="pages">
  3. <view class="container" id="wrapper">
  4. <text class="title draw" data-text="Hello there">Hello there</text>
  5. <text class="info draw" data-text="小程序是一种新的开放能力,开发者可以快速地开发一个小程序。">
  6. 小程序是一种新的开放能力,开发者可以快速地开发一个小程序。
  7. </text>
  8. <view class="image-wrapper draw">
  9. <image class="draw" :src="$getimg + 'guide02.png'"/>
  10. <image class="draw" src="../../../../static/img/icon_use_active.png"/>
  11. </view>
  12. <button class="generate-btn" @click="drawCanvas">generate</button>
  13. </view>
  14. <canvas canvas-id="canvas" class="share-canvas"></canvas>
  15. </view>
  16. </template>
  17. <script>
  18. const wxml2canvas = require('@/utils/wxml2canvas.js');
  19. export default {
  20. data() {
  21. return {
  22. $getimg:this.$getimg,
  23. thetoken:'',
  24. orderid:'',
  25. params:{
  26. }
  27. }
  28. },
  29. onShow() {
  30. },
  31. onLoad(e) {
  32. this.thetoken = 'Bearer' + ' ' + this.$store.state.token;
  33. this.orderid = e.orderid;
  34. uni.showLoading({
  35. title: '正在获取证书信息'
  36. });
  37. this.$api.http.get(this.config.apiBaseurl + '/carbon-h5/wap/order/getCredentialByOrderId?orderId='+this.orderid,{
  38. header: {
  39. Accept:'application/json',
  40. Authorization: this.thetoken,
  41. },
  42. }).then(res => {
  43. uni.hideLoading();
  44. // this.info = Object.assign(this.info, data);
  45. // this.info.url = '/static/html2canvas/index.html?key=' + this.orderid;
  46. console.log('res',JSON.parse(JSON.stringify(res.data.retBody)));
  47. }).catch(err =>{
  48. console.log('err',err)
  49. });
  50. },
  51. methods: {
  52. drawCanvas: function() {
  53. const wrapperId = '#wrapper'
  54. const drawClassName = '.draw'
  55. const canvasId = 'canvas'
  56. wxml2canvas(wrapperId, drawClassName, canvasId).then(() => {
  57. uni.showLoading({
  58. title: '生成中'
  59. });
  60. uni.canvasToTempFilePath({
  61. x: 0,
  62. y: 0,
  63. // width: 500,
  64. // height: 500,
  65. // destWidth: 100,
  66. // destHeight: 100,
  67. canvasId: 'canvas',
  68. success: function(res) {
  69. uni.hideLoading();
  70. uni.showLoading({
  71. title: '保存中'
  72. });
  73. console.log(res.tempFilePath);
  74. uni.saveImageToPhotosAlbum({
  75. filePath:res.tempFilePath,
  76. success:function(res){
  77. uni.hideLoading();
  78. }
  79. })
  80. }
  81. })
  82. // canvas has been drawn
  83. // can save the image with wx.canvasToTempFilePath and wx.saveImageToPhotosAlbum
  84. })
  85. }
  86. }
  87. }
  88. </script>
  89. <style>
  90. /* @import url("./index.css"); */
  91. .container {
  92. height: 100%;
  93. box-sizing: border-box;
  94. padding: 10px 20px;
  95. display: flex;
  96. flex-direction: column;
  97. }
  98. .container .title {
  99. font-size:36px;
  100. text-align: left;
  101. margin-bottom: 10px;
  102. }
  103. .container .info {
  104. font-size: 14px;
  105. line-height: 18px;
  106. color: grey;
  107. text-align: left;
  108. margin-bottom: 40px;
  109. }
  110. .container .image-wrapper image {
  111. width: 100%;
  112. }
  113. </style>