paymentCode1.vue 12 KB

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