payCode2.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. <template>
  2. <view class=" page" :style="getHeight">
  3. <!-- 公共组件-每个页面必须引入 -->
  4. <public-module></public-module>
  5. <view class="panel dis f-c j-c a-c" id="panelcanvas">
  6. <view class="d-flex a-center j-center qrcode" style="position: relative;">
  7. <image :src="paycodeimg" mode="widthFix"></image>
  8. <image :src="logoimg" mode="" style="width: 30px;height: 30px;position: absolute;margin: 0 auto;">
  9. </image>
  10. </view>
  11. <view class="quotation-data">
  12. <view class="circulate-impany dis a-c">
  13. <view>保险公司:</view>
  14. <view>{{companyName}}</view>
  15. </view>
  16. <view class="circulate-data dis a-c">
  17. <view>投保人:</view>
  18. <view>{{applyName}}</view>
  19. </view>
  20. <view class="circulate-data dis a-c">
  21. <view>车牌号:</view>
  22. <view>{{licenseNo}}</view>
  23. </view>
  24. <view v-if="jqpremium" class="circulate-data dis a-c">
  25. <view>交强险:</view>
  26. <view>¥{{jqpremium}}</view>
  27. </view>
  28. <view v-if="sypremium" class="circulate-data dis a-c">
  29. <view>商业险:</view>
  30. <view>¥{{sypremium}}</view>
  31. </view>
  32. <view v-if="taxamount" class="circulate-data dis a-c">
  33. <view>车船税:</view>
  34. <view>¥{{taxamount}}</view>
  35. </view>
  36. <view v-if="jypremium" class="circulate-data dis a-c">
  37. <view>驾意险:</view>
  38. <view>¥{{jypremium}}</view>
  39. </view>
  40. <view class="circulate-data dis a-c">
  41. <view>保费合计:</view>
  42. <view style="font-size: 34upx;color: #2D4D89;font-weight: bold;">¥{{sumPermium}}</view>
  43. </view>
  44. <view class="circulate-data dis a-c " v-if="jqStartDate">
  45. <view>交强起保日期:</view>
  46. <view>{{jqStartDate}}</view>
  47. </view>
  48. <view class="circulate-data dis a-c " v-if="jqEndDate">
  49. <view>交强终保日期:</view>
  50. <view>{{jqEndDate}}</view>
  51. </view>
  52. <view class="circulate-data dis a-c " v-if="syStartDate">
  53. <view>商业起保日期</view>
  54. <view>{{syStartDate}}</view>
  55. </view>
  56. <view class="circulate-data dis a-c " v-if="sysEndDate">
  57. <view>商业终保日期</view>
  58. <view>{{sysEndDate}}</view>
  59. </view>
  60. </view>
  61. </view>
  62. <!-- #ifdef APP-PLUS -->
  63. <u-button type="primary" style="width: 100%;background: #2D4D89;" @click="sendPayCode">发送到微信</u-button>
  64. <!-- #endif -->
  65. <u-button class="tip" type="default" :hair-line="false"
  66. style="color: #2D4D89;background: #EAEDF1;font-weight: bold;border: none;" @click="navOrder">返回订单</u-button>
  67. <canvas id="mycanvas" ref="mycanvas" canvas-id="mycanvas" style="width: 1080px;height: 1680px;"></canvas>
  68. </view>
  69. </template>
  70. <script>
  71. import {
  72. mapState,
  73. mapMutations
  74. } from "vuex"
  75. import {
  76. pathToBase64,
  77. base64ToPath
  78. } from '@/common/pdf.js'
  79. import QR from "@/common/wxqrcode.js"
  80. export default {
  81. data() {
  82. return {
  83. paycodeimg: "",
  84. payImg: "",
  85. endDateTime: "",
  86. companyId: "",
  87. companyName: "", //保险公司名称
  88. sumPermium: "", //保费合计
  89. licenseNo: "", //车牌号
  90. applyName: "", //车主名字
  91. mobile: "", //车主手机号
  92. jqpremium: "",
  93. sypremium: "",
  94. taxamount: "",
  95. jypremium: "",
  96. jqStartDate: "",
  97. jqEndDate: "",
  98. syStartDate: "",
  99. sysEndDate: "",
  100. arr: false,
  101. posterUrl: "",
  102. logoimg: "",
  103. }
  104. },
  105. computed: {
  106. ...mapState(['userInfo', 'token']),
  107. getHeight() {
  108. let height = uni.getSystemInfoSync().windowHeight;
  109. return `height: ${height}px;`;
  110. }
  111. },
  112. async onLoad(data) {
  113. if (!!data.companyId) {
  114. let params = {
  115. companyId: data.companyId
  116. };
  117. let res = await this.$http.get('/order/qrCode/getQrCode?areaCompanyId=' + data.companyId);
  118. //获取前一个页面传过来的信息(车辆信息,人员信息,险种信息)
  119. if (res.code == '200') {
  120. this.companyName = res.data.inscompany;
  121. this.sumPermium = res.data.sumpremium;
  122. this.licenseNo = res.data.cPlateNo;
  123. this.applyName = res.data.cInsuredNme;
  124. this.jqpremium = res.data.jqpremium; // 交强
  125. this.sypremium = res.data.sypremium; // 商业
  126. this.taxamount = res.data.taxamount; // 车船税
  127. this.jypremium = res.data.jypremium; // 驾意险
  128. this.jqStartDate = res.data.jqStartDate; // 交强起保日期
  129. this.jqEndDate = res.data.jqEndDate; // 交强起保日期
  130. this.syStartDate = res.data.syStartDate; // 商业起保日期
  131. this.sysEndDate = res.data.sysEndDate; // 商业起保日期
  132. if (this.companyName == '太平财险') {
  133. let result = res.data.qrCodeUrl.replace(/[\r\n]/g, "");
  134. let imgBase64 = `data:image/png;base64,${result}`;
  135. base64ToPath(imgBase64)
  136. .then(path => {
  137. this.paycodeimg = path;
  138. })
  139. } else {
  140. this.paycodeimg = QR.createQrCodeImg(res.data.qrCodeUrl, {
  141. size: parseInt(300) //二维码大小
  142. })
  143. }
  144. this.insCompanyList.map(ele => {
  145. if (ele.name == res.data.inscompany) {
  146. uni.getImageInfo({
  147. src: ele.icon,
  148. success: image => {
  149. pathToBase64(image.path)
  150. .then(base64 => {
  151. this.logoimg = base64;
  152. })
  153. .catch(error => {});
  154. },
  155. fail: err => {}
  156. });
  157. }
  158. return ele;
  159. })
  160. } else {
  161. uni.showModal({
  162. showCancel: false,
  163. title: res.msg
  164. })
  165. }
  166. } else {
  167. uni.showModal({
  168. showCancel: false,
  169. title: "未查询到该订单"
  170. })
  171. }
  172. },
  173. methods: {
  174. ...mapMutations(['setOrderType', 'setOrderStage']),
  175. async tpcodeconfirm() { //输入验证码,获取支付二维码
  176. let tpcode = {
  177. issueCode: this.tpcodevalue,
  178. orderno: this.orderno,
  179. }
  180. let tpcoderes = await this.$http.post('/API/insCBIT/taiPingPay', tpcode); //太平
  181. this.paycodeimg = QR.createQrCodeImg(JSON.parse(tpcoderes.data).payUrl, {
  182. size: parseInt(300) //二维码大小
  183. })
  184. },
  185. //发送收款码到微信
  186. sendPayCode() {
  187. // var that = this;
  188. // this.canvasPayImage();
  189. if (this.payImg) {
  190. uni.share({
  191. provider: "weixin",
  192. scene: "WXSceneSession",
  193. type: 2,
  194. imageUrl: this.payImg
  195. })
  196. }
  197. },
  198. // canvasPayImage() {
  199. // let myCanvas = uni.createCanvasContext('mycanvas', this);
  200. // var ww = '1080px';
  201. // var hh = '1680px';
  202. // //画布尺寸
  203. // // 坐标(0,0) 表示从此处开始绘制,相当于偏移。
  204. // //背景
  205. // myCanvas.drawImage('/static/image/car-insure/payBg.jpg', 0, 0, ww, hh);
  206. // // 失效时间
  207. // // if (!this.arr) {
  208. // // myCanvas.setFillStyle('#f00') //文字样式
  209. // // myCanvas.font = `40px Arial,sans-serif`; //绘制文字
  210. // // myCanvas.setTextAlign('center') //设置对于坐标点的对齐方式
  211. // // myCanvas.fillText('该二维码将于 ' + this.endDateTime + ' 失效', 540, 355);
  212. // // }
  213. // //二维码
  214. // myCanvas.drawImage(this.paycodeimg, 315, 415, 435, 435);
  215. // //个人信息
  216. // myCanvas.setFillStyle('#000') //文字样式
  217. // myCanvas.font = `44px Arial,sans-serif`; //绘制文字
  218. // myCanvas.setTextAlign('left')
  219. // myCanvas.fillText(this.applyName, 535, 965);
  220. // myCanvas.fillText(this.licenseNo, 535, 1085);
  221. // myCanvas.fillText(this.companyName, 535, 1205);
  222. // myCanvas.setFillStyle('#f00') //文字样式
  223. // myCanvas.font = `bold 48px Arial,sans-serif`; //绘制文字
  224. // myCanvas.fillText('¥' + this.sumPermium, 535, 1328);
  225. // //开始绘画,必须调用这一步,才会把之前的一些操作实施
  226. // myCanvas.draw(true, () => {
  227. // uni.hideLoading();
  228. // uni.canvasToTempFilePath({
  229. // canvasId: 'mycanvas',
  230. // success: (res) => {
  231. // // 在H5平台下,tempFilePath 为 base64
  232. // this.payImg = res.tempFilePath;
  233. // console.log(this.payImg)
  234. // },
  235. // fail: () => {
  236. // uni.showToast({
  237. // title: '生成支付码海报失败',
  238. // duration: 2000
  239. // });
  240. // }
  241. // });
  242. // });
  243. // },
  244. navOrder() {
  245. this.navigate({
  246. url: "/pages/orders/orders"
  247. }, "switchTab", true);
  248. },
  249. //页面截图转路径
  250. receiveRenderData(val) {
  251. this.posterUrl = val.replace(/[\r\n]/g, ''); // 去除base64位中的空格
  252. const imageStr = this.posterUrl;
  253. // 将base64转化为临时地址
  254. base64ToPath(imageStr).then(path => {
  255. this.payImg = path
  256. }).catch(error => {});
  257. },
  258. showLoading() {
  259. uni.showLoading({
  260. title: '正在生成图片'
  261. });
  262. },
  263. hideLoading() {
  264. uni.hideLoading();
  265. },
  266. }
  267. }
  268. </script>
  269. <script module="canvasImage" lang="renderjs">
  270. import html2canvas from 'html2canvas'
  271. export default {
  272. data() {
  273. return {
  274. }
  275. },
  276. mounted() {
  277. setTimeout(() => {
  278. this.canvasImage.generateImage()
  279. }, 1000);
  280. },
  281. methods: {
  282. generateImage() {
  283. setTimeout(() => {
  284. this.$ownerInstance.callMethod('showLoading')
  285. const dom = document.getElementById('panelcanvas') // 需要生成图片内容的 dom 节点
  286. html2canvas(dom, {
  287. width: dom.clientWidth, //dom 原始宽度
  288. height: dom.clientHeight,
  289. scrollY: 0, // html2canvas默认绘制视图内的页面,需要把scrollY,scrollX设置为0
  290. scrollX: 0,
  291. useCORS: true, //支持跨域
  292. // allowTaint: false,
  293. scale: 2, // 设置生成图片的像素比例,默认是1,如果生成的图片模糊的话可以开启该配置项
  294. }).then((canvas) => {
  295. // 生成成功
  296. this.$ownerInstance.callMethod('hideLoading')
  297. this.$ownerInstance.callMethod('receiveRenderData', canvas.toDataURL('image/png'))
  298. }).catch(err => {
  299. // 生成失败 弹出提示弹窗
  300. this.$ownerInstance.callMethod('_errAlert', `【生成图片失败,请重试】${err}`)
  301. })
  302. }, 300)
  303. }
  304. },
  305. }
  306. </script>
  307. <style lang="scss" scoped>
  308. @import '@/style/mixin.scss';
  309. .page {
  310. padding: 10px 16px;
  311. }
  312. .panel {
  313. width: 100%;
  314. margin-bottom: 20px;
  315. }
  316. .qrcode {
  317. width: 174px;
  318. height: 174px;
  319. padding: 10px;
  320. margin-top: 16px;
  321. border-radius: 4px;
  322. border: 1px solid #2D4D89;
  323. }
  324. .qrcode image {
  325. width: 174px;
  326. height: 174px;
  327. }
  328. .tip {
  329. background-color: #FFFFFF;
  330. margin-top: 30upx;
  331. border-radius: 10upx;
  332. font-size: 32upx;
  333. font-weight: bold;
  334. }
  335. .quotation-data {
  336. width: 100%;
  337. margin-top: 16px;
  338. border: 1px solid #2D4D89;
  339. .circulate-impany {
  340. height: 37px;
  341. padding: 8px 6px;
  342. background: rgba(45, 77, 137, 0.1);
  343. border-bottom: 1px solid #000000;
  344. font-weight: 700;
  345. view:first-child {
  346. margin-right: 10px;
  347. }
  348. }
  349. .circulate-data {
  350. height: 37px;
  351. color: #232832;
  352. padding: 8px 6px;
  353. border-bottom: 1px solid #000000;
  354. view:first-child {
  355. color: #232832;
  356. font-weight: 400;
  357. font-size: 14px;
  358. margin-right: 5px;
  359. }
  360. view:last-child {
  361. font-weight: 400;
  362. color: #232832;
  363. font-size: 14px;
  364. }
  365. }
  366. .circulate-data:last-child {
  367. border: none;
  368. }
  369. }
  370. #mycanvas {
  371. position: absolute;
  372. top: -10000px;
  373. left: -10000px;
  374. }
  375. </style>