|
@@ -1,16 +1,35 @@
|
|
|
<template>
|
|
|
<view class="pages">
|
|
|
<view class="container" id="wrapper">
|
|
|
- <text class="title draw" data-text="Hello there">Hello there</text>
|
|
|
+ <view class="image-wrapper draw">
|
|
|
+ <image :src="$getimg+'cqtanhui-cert.jpg'" class="draw page-bg" mode="scaleToFill"></image>
|
|
|
+ </view>
|
|
|
+ <view class="draw cart-no">证书编号:{{item.credentialNo}}</view>
|
|
|
+ <view class="cart-text cart-name">
|
|
|
+ 尊敬的 {{item.customerName}}:
|
|
|
+ </view>
|
|
|
+ <view class="cart-text">
|
|
|
+ 感谢您对“碳汇+”生态产品价值实现的支持,您购买了{{item.year}}年度碳汇量{{item.carbonAmount}}kg,您购碳资金{{item.orderAmount}}元,已全额转入{{item.farmerName}}的银行账户。
|
|
|
+ </view>
|
|
|
+ <view class="cart-text">
|
|
|
+ 该笔碳汇可用于抵消您的碳排放
|
|
|
+ </view>
|
|
|
+ <view class="cart-text">
|
|
|
+ 感谢您为生态文明建设和全球应对气候变化所做出的贡献
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <!-- <text class="title draw" data-text="Hello there">Hello there</text>
|
|
|
<text class="info draw" data-text="小程序是一种新的开放能力,开发者可以快速地开发一个小程序。">
|
|
|
小程序是一种新的开放能力,开发者可以快速地开发一个小程序。
|
|
|
</text>
|
|
|
<view class="image-wrapper draw">
|
|
|
<image class="draw" :src="$getimg + 'guide02.png'"/>
|
|
|
<image class="draw" src="../../../../static/img/icon_use_active.png"/>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
|
|
|
- <button class="generate-btn" @click="drawCanvas">generate</button>
|
|
|
+ <!-- <button class="generate-btn" @click="drawCanvas">generate</button> -->
|
|
|
</view>
|
|
|
<canvas canvas-id="canvas" class="share-canvas"></canvas>
|
|
|
</view>
|
|
@@ -24,7 +43,7 @@
|
|
|
$getimg:this.$getimg,
|
|
|
thetoken:'',
|
|
|
orderid:'',
|
|
|
-
|
|
|
+ item:[],
|
|
|
params:{
|
|
|
}
|
|
|
|
|
@@ -48,6 +67,7 @@
|
|
|
uni.hideLoading();
|
|
|
// this.info = Object.assign(this.info, data);
|
|
|
// this.info.url = '/static/html2canvas/index.html?key=' + this.orderid;
|
|
|
+ this.item = res.data.retBody;
|
|
|
console.log('res',JSON.parse(JSON.stringify(res.data.retBody)));
|
|
|
}).catch(err =>{
|
|
|
console.log('err',err)
|
|
@@ -96,29 +116,5 @@
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
|
- /* @import url("./index.css"); */
|
|
|
- .container {
|
|
|
- height: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 10px 20px;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
-
|
|
|
- }
|
|
|
- .container .title {
|
|
|
- font-size:36px;
|
|
|
- text-align: left;
|
|
|
- margin-bottom: 10px;
|
|
|
-
|
|
|
- }
|
|
|
- .container .info {
|
|
|
- font-size: 14px;
|
|
|
- line-height: 18px;
|
|
|
- color: grey;
|
|
|
- text-align: left;
|
|
|
- margin-bottom: 40px;
|
|
|
- }
|
|
|
- .container .image-wrapper image {
|
|
|
- width: 100%;
|
|
|
- }
|
|
|
+ @import url("./certificate.css");
|
|
|
</style>
|