certificate.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view class="pages">
  3. <web-view :src="certificateUrl
  4. +'credentialNo='+item.credentialNo
  5. +'&customerName='+item.customerName
  6. +'&year='+item.year
  7. +'&carbonAmount='+item.carbonAmount
  8. +'&orderAmount='+item.orderAmount
  9. +'&buyDate='+item.buyDate
  10. +'&nickName='+item.nickName
  11. +'&companyName='+item.companyName
  12. +'&isH5=1'
  13. ">
  14. </web-view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. components:{
  20. },
  21. data() {
  22. return {
  23. $getimg:this.$getimg,
  24. certificateUrl:this.config.certificateUrl,
  25. thetoken:'',
  26. orderid:'',
  27. item:[],
  28. path:'',
  29. params:{},
  30. }
  31. },
  32. onShow() {
  33. },
  34. onLoad(e) {
  35. console.log('config',this.config);
  36. this.thetoken = 'Bearer' + ' ' + this.$store.state.token;
  37. this.orderid = e.orderid;
  38. uni.showLoading({
  39. title: '正在获取证书信息'
  40. });
  41. this.$api.http.get(this.config.apiBaseurl + '/carbon-h5/wap/order/getCredentialByOrderId?orderId='+this.orderid,{
  42. header: {
  43. Accept:'application/json',
  44. Authorization: this.thetoken,
  45. },
  46. }).then(res => {
  47. uni.hideLoading();
  48. // this.info = Object.assign(this.info, data);
  49. // this.info.url = '/static/html2canvas/index.html?key=' + this.orderid;
  50. this.item = res.data.retBody;
  51. console.log('this.base.views',this.base.views);
  52. this.base.views[1].text = `证书编号:${res.data.retBody.credentialNo}`;
  53. this.base.views[2].text = `尊敬的 ${res.data.retBody.customerName}:`;
  54. this.base.views[3].text = `感谢您对“碳汇+”生态产品价值实现的支持,您购买了 ${res.data.retBody.year}年度碳汇量${res.data.retBody.carbonAmount}kg,您购碳资金${res.data.retBody.orderAmount}元,已全额转入${res.data.retBody.farmerName}的银行账户。`;
  55. console.log('res',JSON.parse(JSON.stringify(res.data.retBody)));
  56. }).catch(err =>{
  57. console.log('err',err)
  58. });
  59. },
  60. methods: {
  61. }
  62. }
  63. </script>
  64. <style>
  65. @import url("./certificate.css");
  66. </style>