certificates.vue 12 KB

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