certificates.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. <template>
  2. <view class="content">
  3. <view class="team" v-if="!is_over">
  4. <empty></empty>
  5. </view>
  6. <view class="certificates" v-if='is_over'>
  7. <canvas v-if="showcanvas" id="qrShareBox" canvas-id="qrShareBox" class="tki-qrcode-canvas" />
  8. <image class="imgbox" v-else :src="img" mode=" aspectFill"></image>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. import {
  14. get_training,
  15. sign_training,
  16. detail_training
  17. } from '@/api/train.js';
  18. import jyfParser from "@/components/jyf-parser/jyf-parser";
  19. import {
  20. weixindata,
  21. weixinlocation
  22. } from '@/utils/wxAuthorized.js';
  23. import empty from '@/components/empty';
  24. import {
  25. userinfo
  26. } from '@/api/user.js';
  27. import {
  28. mapState,
  29. mapMutations
  30. } from 'vuex';
  31. export default {
  32. components: {
  33. empty,
  34. jyfParser
  35. },
  36. data() {
  37. return {
  38. is_over: 1,
  39. type: '', //0是个人报名,1是团体报名
  40. id: '',
  41. description: '',
  42. list: '',
  43. //个人
  44. name: '',
  45. phone: '',
  46. addr: '',
  47. work: '',
  48. //团队
  49. company: '',
  50. address: '',
  51. companyName: '',
  52. companyphone: '',
  53. num: '',
  54. signDate: '',
  55. loading: true, //是否载入图片中
  56. size: 180,
  57. ratio: 1, //页面比例用于计算
  58. canHeight: '',
  59. canWeidth: '',
  60. url: '',
  61. img: '',
  62. showcanvas: true,
  63. uid: '',
  64. sendtime: ''
  65. };
  66. },
  67. onLoad(option) {
  68. this.type = option.type;
  69. // this.id = option.id;
  70. this.name = decodeURI(option.name)
  71. this.sendtime = option.sendtime
  72. this.IndexShare();
  73. // this.loadData();
  74. },
  75. onReady() {
  76. // detail_training({
  77. // id: this.id,
  78. // }).then(({
  79. // data
  80. // }) => {
  81. // console.log(999, data)
  82. // this.name = data.name
  83. // this.signDate = data.add_time
  84. // this.is_over = data.is_over
  85. // console.log(3, data.add_time)
  86. let obj = this;
  87. let name = obj.name
  88. let signDate = obj.sendtime
  89. function getRecTime(timestamp, fmt) {
  90. let d = new Date(timestamp * 1000)
  91. // f = fmt || 'yyyy/MM/dd',
  92. let f = fmt || 'yyyy.MM.dd'
  93. let o = {
  94. 'M+': d.getMonth() + 1, //月份
  95. 'd+': d.getDate(), //日
  96. 'h+': d.getHours(), //小时
  97. 'm+': d.getMinutes(), //分
  98. 's+': d.getSeconds(), //秒
  99. 'q+': Math.floor((d.getMonth() + 3) / 3), //季度
  100. 'S': d.getMilliseconds() //毫秒
  101. };
  102. if (/(y+)/.test(f)) {
  103. f = f.replace(RegExp.$1, (d.getFullYear() + '').substr(4 - RegExp.$1.length));
  104. }
  105. for (let k in o) {
  106. if (new RegExp('(' + k + ')').test(f)) {
  107. f = f.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr((
  108. '' + o[k]).length)));
  109. }
  110. }
  111. return f;
  112. console.log(f)
  113. }
  114. let m = getRecTime(signDate)
  115. let query = uni.createSelectorQuery();
  116. // this.loadData();
  117. // 获取页面比例
  118. query
  119. .select('.certificates')
  120. .fields({
  121. size: true
  122. },
  123. e => {
  124. console.log('获取页面比例', e)
  125. // 保存比例
  126. this.ratio = e.width / 750;
  127. }
  128. )
  129. .exec();
  130. // 获取画布宽高信息
  131. query
  132. .select('#qrShareBox')
  133. .fields({
  134. size: true
  135. },
  136. e => {
  137. console.log('获取画布宽高信息', e)
  138. obj.canHeight = e.height;
  139. obj.canWeidth = e.width;
  140. }
  141. )
  142. .exec();
  143. let ctxBg = '/static/img/graduation.png'; //画布背景
  144. let src = '/static/icon/erweima.jpg' // 二维码
  145. let context = uni.createCanvasContext('qrShareBox');
  146. // 插入背景图片
  147. context.drawImage(ctxBg, 0, 0, obj.canWeidth, obj.canHeight);
  148. const codeSize = obj.size * obj.ratio; //计算二维码大小
  149. const codeX = ((750 - obj.size) * obj.ratio) / 2; //二维码所在x轴位置
  150. const codeY = 999 * obj.ratio; //二维码所在y轴位置
  151. // console.log('二维码大小',codeSize)
  152. // console.log('二维码所在x轴位置',codeX)
  153. // console.log('二维码所在y轴位置',codeY)
  154. const codeBoxColor = '#FFFFFF'; //包裹框颜色
  155. const codeBoxWidht = 0; //包裹边框宽度
  156. const codeBoxSize = (codeBoxWidht / 2) * obj.ratio; //计算二维码白色包裹框大小
  157. const codeBoxX = codeX - codeBoxSize; //包裹框初始X轴
  158. const codeBoxY = codeY - codeBoxSize; //包裹框初始Y轴
  159. const codeBoxEnd = codeSize + codeBoxWidht * obj.ratio; //计算包裹框大小
  160. const fontTop = codeY + codeBoxEnd + (codeBoxWidht + 20) * obj.ratio; //文字距离上边距高度
  161. const fontSize = 24 * obj.ratio; //文字大小
  162. const fontText = ''; //文字内容
  163. const fontLeft = (codeSize - fontSize * fontText.length) / 2 + codeX; //文字左侧距离
  164. // // 插入文字
  165. context.setFontSize(32 * obj.ratio)
  166. // 画横线
  167. context.moveTo(90 * obj.ratio, 586 * obj.ratio)
  168. context.lineTo(250 * obj.ratio, 586 * obj.ratio)
  169. context.stroke();
  170. context.setTextAlign('center')
  171. context.fillText(name, 170 * obj.ratio, 574 * obj.ratio)
  172. context.setTextAlign('left')
  173. context.fillText('先生/女士', 260 * obj.ratio, 580 * obj.ratio)
  174. context.setFontSize(31 * obj.ratio)
  175. context.fillText('您已完成嘉鱼县红十字会普及培训的', 160* obj.ratio, 670 * obj.ratio)
  176. context.fillText('全部课程,特发此证。', 97 * obj.ratio, 720 * obj.ratio)
  177. context.setFontSize(22 * obj.ratio)
  178. context.fillText('签发人:', 300 * obj.ratio, 800 * obj.ratio)
  179. context.fillText('Siger:', 300 * obj.ratio, 830 * obj.ratio)
  180. // 画横线
  181. context.moveTo(380 * obj.ratio, 830 * obj.ratio)
  182. context.lineTo(660 * obj.ratio, 830 * obj.ratio)
  183. context.stroke()
  184. context.fillText('签发日期:', 300 * obj.ratio, 880 * obj.ratio)
  185. context.fillText('Issuer Date:', 300 * obj.ratio, 910 * obj.ratio)
  186. context.setFontSize(26 * obj.ratio)
  187. context.fillText(m, 475 * obj.ratio, 908 * obj.ratio)
  188. context.fillText('嘉鱼县红十字会', 440 * obj.ratio, 820 * obj.ratio)
  189. // 画横线
  190. context.moveTo(430 * obj.ratio, 915 * obj.ratio)
  191. context.lineTo(660 * obj.ratio, 915 * obj.ratio)
  192. context.stroke()
  193. context.setFontSize(fontSize);
  194. context.fillText(fontText, fontLeft, fontTop);
  195. // 插入边框
  196. context.beginPath();
  197. context.setLineJoin('round'); //边框类型
  198. context.setLineWidth(codeBoxWidht * obj.ratio);
  199. context.setStrokeStyle(codeBoxColor); //设置包裹框颜色
  200. context.strokeRect(codeBoxX, codeBoxY, codeBoxEnd, codeBoxEnd);
  201. context.stroke();
  202. // 插入二维码
  203. context.drawImage(src, codeX, codeY, codeSize, codeSize);
  204. context.draw(false, (e) => {
  205. uni.canvasToTempFilePath({
  206. x: 0,
  207. y: 0,
  208. width: obj.canWeidth,
  209. height: obj.canHeight,
  210. destWidth: obj.canWeidth,
  211. destHeight: obj.canHeight,
  212. canvasId: 'qrShareBox',
  213. success: function(res) {
  214. console.log(res)
  215. // uni.showModal({
  216. // title:'zhi1'
  217. // })
  218. // 在H5平台下,tempFilePath 为 base64
  219. // console.log(res.tempFilePath)
  220. obj.showcanvas = false;
  221. obj.img = res.tempFilePath
  222. }
  223. })
  224. })
  225. // })
  226. },
  227. onShow() {
  228. this.uid = this.userInfo.uid;
  229. console.log('this.uid', this.uid)
  230. },
  231. computed: {
  232. ...mapState('user', ['hasLogin', 'userInfo'])
  233. },
  234. methods: {
  235. ...mapMutations('user', ['setUserInfo']),
  236. // 分享
  237. IndexShare() {
  238. let obj = this;
  239. let item = {
  240. link: obj.$store.state.baseURL + '/index/#/pages/form/certificates?name=' + encodeURI(obj.name) + '&sendtime=' + obj.sendtime,
  241. imgUrl: obj.$store.state.baseURL + '/index/static/img/002.png',
  242. desc: '结业证书',
  243. title: '嘉鱼县红十字会',
  244. };
  245. console.log('分享加', item)
  246. weixindata(item);
  247. },
  248. getRecTime(timestamp, fmt) {
  249. let d = new Date(timestamp * 1000),
  250. // f = fmt || 'yyyy/MM/dd',
  251. f = fmt || 'yyyy.MM.dd hh:mm:ss',
  252. o = {
  253. 'M+': d.getMonth() + 1, //月份
  254. 'd+': d.getDate(), //日
  255. 'h+': d.getHours(), //小时
  256. 'm+': d.getMinutes(), //分
  257. 's+': d.getSeconds(), //秒
  258. 'q+': Math.floor((d.getMonth() + 3) / 3), //季度
  259. 'S': d.getMilliseconds() //毫秒
  260. };
  261. if (/(y+)/.test(f)) {
  262. f = f.replace(RegExp.$1, (d.getFullYear() + '').substr(4 - RegExp.$1.length));
  263. }
  264. for (let k in o) {
  265. if (new RegExp('(' + k + ')').test(f)) {
  266. f = f.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k])
  267. .length)));
  268. }
  269. }
  270. return f;
  271. console.log(f)
  272. },
  273. }
  274. };
  275. </script>
  276. <style lang="scss">
  277. page {
  278. background: #FFFFFF;
  279. width: 100%;
  280. height: 100%;
  281. .content {
  282. height: 100%;
  283. }
  284. }
  285. .box {
  286. padding: 0rpx 25rpx;
  287. width: 100%;
  288. }
  289. .top-image {
  290. width: 100%;
  291. height: 300rpx;
  292. }
  293. .top-title {
  294. width: 100%;
  295. text-align: center;
  296. padding: 25rpx 0rpx;
  297. font-size: 34rpx;
  298. border-bottom: 1rpx dashed #B5B5B5;
  299. }
  300. .canten {
  301. text-align: center !important;
  302. }
  303. .addr {
  304. color: #222222;
  305. font-size: 28rpx;
  306. padding: 25rpx 35rpx;
  307. }
  308. .text-box {
  309. padding: 25rpx 25rpx;
  310. padding-bottom: 0rpx !important;
  311. }
  312. .text {
  313. color: #222222;
  314. font-size: 28rpx;
  315. padding-bottom: 15rpx;
  316. }
  317. .weixin-icon {
  318. width: 100%;
  319. text-align: center;
  320. padding-top: 45rpx;
  321. image {
  322. width: 248rpx;
  323. height: 248rpx;
  324. }
  325. }
  326. .tip {
  327. color: #222222;
  328. font-size: 28rpx;
  329. width: 100%;
  330. text-align: center;
  331. padding-bottom: 50rpx;
  332. }
  333. .sign-tip {
  334. padding: 25rpx 0rpx;
  335. text-align: center;
  336. color: #222222;
  337. font-size: 28rpx;
  338. }
  339. .form-box {
  340. padding: 0rpx 35rpx;
  341. .label {
  342. font-size: 34rpx;
  343. padding: 25rpx 0rpx;
  344. text {
  345. color: #E62129;
  346. padding-left: 5rpx;
  347. }
  348. }
  349. input {
  350. font-size: 28rpx;
  351. color: #222222;
  352. border: 2rpx solid #979797;
  353. padding: 0rpx 15rpx;
  354. border-radius: 15rpx;
  355. height: 80rpx;
  356. }
  357. }
  358. .submit {
  359. width: 70%;
  360. margin: 0rpx auto;
  361. margin-top: 80rpx;
  362. margin-bottom: 80rpx;
  363. padding: 25rpx 0;
  364. text-align: center;
  365. background-color: #E62129;
  366. color: #FFFFFF;
  367. font-size: 32rpx;
  368. border-radius: 10rpx;
  369. }
  370. .grey {
  371. background-color: #9B9B9B !important;
  372. }
  373. .certificates {
  374. // padding: 24rpx;
  375. width: 100%;
  376. height: 100vh;
  377. }
  378. .tki-qrcode-canvas {
  379. // width: 700rpx;
  380. // height: 1245rpx;
  381. width: 750rpx;
  382. // padding: 32rpx;
  383. height: 1350rpx;
  384. margin: 0 auto;
  385. }
  386. .bgimg {
  387. width: 100%;
  388. height: 100%;
  389. image {
  390. width: 100%;
  391. height: 100%;
  392. }
  393. }
  394. .box-mian {
  395. width: 100%;
  396. height: 100%;
  397. position: absolute;
  398. padding: 380rpx 94rpx 200rpx 94rpx;
  399. color: #333;
  400. left: 0;
  401. top: 0;
  402. display: flex;
  403. flex-direction: column;
  404. justify-content: center;
  405. // align-items: center;
  406. .name {
  407. display: flex;
  408. font-size: 32rpx;
  409. .name-left {
  410. text-align: center;
  411. // padding: 0 24rpx;
  412. width: 150rpx;
  413. border-bottom: 2rpx solid #333;
  414. }
  415. }
  416. .info {
  417. margin-top: 68rpx;
  418. text-indent: 64rpx;
  419. line-height: 58rpx;
  420. }
  421. .signName {
  422. margin-top: 32rpx;
  423. display: flex;
  424. .signName-left {
  425. line-height: 34rpx;
  426. .signName-1 {}
  427. .signName-2 {
  428. font-size: 28rpx;
  429. }
  430. }
  431. .signName-right {
  432. text-align: left;
  433. // width: 100%;
  434. padding: 0 12rpx;
  435. margin-left: 12rpx;
  436. // width: 288rpx;
  437. border-bottom: 2rpx solid #333;
  438. // margin-bottom: 12rpx;
  439. .list-input {
  440. width: 100%;
  441. padding: 0 12rpx;
  442. height: 70rpx;
  443. font-size: 32rpx;
  444. text-align: left;
  445. }
  446. .signDate {
  447. display: flex;
  448. align-items: center;
  449. }
  450. }
  451. }
  452. .signDate {
  453. margin-top: 22rpx;
  454. display: flex;
  455. .signName-left {
  456. line-height: 34rpx;
  457. .signName-1 {}
  458. .signName-2 {
  459. font-size: 28rpx;
  460. }
  461. }
  462. .signName-right {
  463. text-align: left;
  464. padding-left: 12rpx;
  465. margin-left: 12rpx;
  466. width: 288rpx;
  467. border-bottom: 2rpx solid #333;
  468. .list-input {
  469. height: 70rpx;
  470. font-size: 32rpx;
  471. text-align: left;
  472. }
  473. // margin-bottom: 12rpx;
  474. }
  475. }
  476. // background-color: pink;
  477. }
  478. .imgbox {
  479. height: 1350rpx;
  480. width: 750rpx;
  481. }
  482. </style>