detail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. <template>
  2. <view class="honour" :class="fromIndex ? '' : 'share'">
  3. <view class="container">
  4. <view class="certificate" @click="previewImage">
  5. <canvas id="canvas" canvas-id="canvas"
  6. :style="{ width: canvasWidth + 'px', height: canvasHeight + 'px' }"></canvas>
  7. </view>
  8. <view class="share">
  9. <!-- <button open-type="share" class="item" v-if="fromIndex">
  10. <image class="icon" src="../../static/icon/share1.png"></image>
  11. <view>分享好友</view>
  12. </button> -->
  13. <view class="item" @tap="saveImg">
  14. <!-- <image class="icon" src="../../static/icon/share2.png"></image> -->
  15. <view>点图片并长按保存图片</view>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. // import { api_getHonourInfo } from '../../api.js';
  23. import * as filters from '../../common/util/filters.js';
  24. export default {
  25. // onShareAppMessage: function(res) {
  26. // //分享荣誉证书
  27. // uni.showLoading({ title: '加载中', mask: true }); //显示loading
  28. // if (res.from === 'button') {
  29. // //如果点击分享给好友按钮,则分享页面为当前页面
  30. // return {
  31. // title: '我的学位证书',
  32. // path: `/pages/honour/honour?name=${this.name}&season=${this.season}&grade=${this.grade}&year=${this.year}&month=${this.month}&day=${
  33. // this.day
  34. // }&header=${encodeURIComponent(this.header)}`
  35. // };
  36. // }
  37. // return {
  38. // //如果点击右上角分享按钮,则分享页面为小程序主页
  39. // title: '大卫博士商学院卖货争霸',
  40. // path: '/pages/index/index'
  41. // };
  42. // },
  43. data() {
  44. return {
  45. pageTitle: '荣耀殿堂', //页面名
  46. canvasWidth: 0, //canvas 宽
  47. canvasHeight: 0, //canvas 高
  48. name: '', //名字
  49. season: '',
  50. grade: '', //学位
  51. year: '', //年
  52. month: '', //月
  53. day: '', //日
  54. fromIndex: true, //是否非分享页面,
  55. header: '',
  56. headerImg: '',
  57. deg: '',
  58. userInfo: ''
  59. };
  60. },
  61. computed: {
  62. userServerInfo() {
  63. return this.$store.state.userServerInfo;
  64. },
  65. userWeixinInfo() {
  66. return this.$store.state.userWeixinInfo;
  67. }
  68. },
  69. methods: {
  70. saveImg() {
  71. //保存证书到本地
  72. uni.canvasToTempFilePath({
  73. //首先将 canvas 转化为一个图片
  74. canvasId: 'canvas'
  75. })
  76. .then(([, res]) => {
  77. //获得图片的临时路径
  78. return uni.saveImageToPhotosAlbum({
  79. //将图片保存到系统相册
  80. filePath: res.tempFilePath
  81. });
  82. })
  83. .then(([err, res]) => {
  84. console.log(err, res);
  85. if (err && (err.errMsg === 'saveImageToPhotosAlbum:fail:auth denied' || err.errMsg ===
  86. 'saveImageToPhotosAlbum:fail auth deny')) {
  87. //如果用户拒绝授权保存图片到相册
  88. const that = this;
  89. uni.showModal({
  90. title: '"大卫博士学位争霸赛"需要保存图片或视频到你的相册',
  91. content: '',
  92. success(res) {
  93. if (res.confirm) {
  94. wx.openSetting({
  95. success(res) {
  96. that.saveImg();
  97. return;
  98. }
  99. });
  100. }
  101. }
  102. });
  103. } else if (err && err.errMsg === 'saveImageToPhotosAlbum:fail authorize no response') {
  104. uni.showModal({
  105. content: '保存图片失败,请手动截图保存',
  106. showCancel: false
  107. });
  108. }
  109. if (res && res.errMsg === 'saveImageToPhotosAlbum:ok') {
  110. uni.showModal({
  111. content: '图片已经保存成功',
  112. showCancel: false
  113. });
  114. }
  115. });
  116. },
  117. previewImage() {
  118. //点击 canvas 预览图片
  119. console.log('点击预览图片1')
  120. uni.showLoading({
  121. title: '加载中',
  122. mask: true
  123. }); //显示loading
  124. // uni.canvasToTempFilePath({
  125. // //首先将 canvas 转化为一个图片
  126. // canvasId: 'canvas'
  127. // }).then(([, res]) => {
  128. // console.log('点击预览图片', res)
  129. // //获得图片的临时路径
  130. // uni.hideLoading(); //app hide 时隐藏loading
  131. // uni.previewImage({
  132. // urls: [res.tempFilePath]
  133. // });
  134. // });
  135. uni.canvasToTempFilePath({
  136. canvasId: 'canvas',
  137. success: function(res) {
  138. uni.hideLoading();
  139. // 在H5平台下,tempFilePath 为 base64
  140. console.log('点击预览图片', res)
  141. uni.previewImage({
  142. urls: [res.tempFilePath]
  143. });
  144. },
  145. fail: function(err) {
  146. console.log('图片转换失败', err)
  147. }
  148. })
  149. },
  150. createCanvas() {
  151. let _this = this
  152. _this.canvasWidth = uni.upx2px(641);
  153. _this.canvasHeight = uni.upx2px(977);
  154. const ctx = uni.createCanvasContext('canvas', this);
  155. ctx.drawImage(this.zhengshu.bg, 0, 0, _this.canvasWidth, _this.canvasHeight);
  156. ctx.save();
  157. ctx.beginPath();
  158. ctx.arc(uni.upx2px(320), uni.upx2px(380), uni.upx2px(90), 0, 2 * Math.PI, false);
  159. ctx.clip();
  160. ctx.fillStyle = 'green';
  161. //绘制头像
  162. ctx.drawImage(this.headerImg, uni.upx2px(230), uni.upx2px(290), uni.upx2px(180), uni
  163. .upx2px(180));
  164. ctx.restore();
  165. // 绘制证书显示文字
  166. ctx.setTextAlign('center')
  167. ctx.setFontSize(uni.upx2px(26))
  168. // ctx.fillText(this.zhengshu.name, uni.upx2px(320), uni.upx2px(555))
  169. // ctx.setFontSize(uni.upx2px(32))
  170. ctx.fillText(this.userInfo.nickname, uni.upx2px(320), uni.upx2px(600))
  171. ctx.setFontSize(uni.upx2px(36))
  172. // ctx.fillText(this.userInfo.mingci, uni.upx2px(425), uni.upx2px(605))
  173. ctx.draw()
  174. }
  175. },
  176. onLoad() {
  177. let zhengshu = localStorage.getItem('zhengshu')
  178. this.zhengshu = JSON.parse(zhengshu)
  179. console.log(this.zhengshu)
  180. this.headerImg = this.vuex_user.headimg
  181. this.userInfo = this.vuex_user
  182. },
  183. onShow() {
  184. this.$nextTick(() => {
  185. this.createCanvas()
  186. })
  187. }
  188. // async onLoad() {
  189. // //当进入页面之后判断是否带带有参数
  190. // // const avatarUrl = this.userServerInfo.avatar
  191. // // uni.hideShareMenu();
  192. // // opt.time = opt.time || this.userServerInfo.start_time;
  193. // // this.header = opt.name ? decodeURIComponent(opt.header) : avatarUrl;
  194. // let opt = this.vuex_user
  195. // this.header = opt ? decodeURIComponent(opt.headimg) : '';
  196. // // opt.name="xvying"
  197. // // opt.grade="学霸学位"
  198. // this.header = this.vuex_user.headimg
  199. // uni.showLoading({
  200. // title: '加载中',
  201. // mask: true
  202. // });
  203. // let _this = this;
  204. // uni.downloadFile({
  205. // // url:this.header,
  206. // url: 'http://api.dwbszbs.dev.xmnk.cn/default/headimg.png"',
  207. // success: ({
  208. // statusCode,
  209. // tempFilePath
  210. // }) => {
  211. // if (statusCode === 200) {
  212. // this.headerImg = tempFilePath;
  213. // }
  214. // },
  215. // fail: e => {
  216. // console.log(e);
  217. // uni.showToast({
  218. // icon: 'none',
  219. // title: '获取用户头像失败',
  220. // duration: 3000
  221. // });
  222. // },
  223. // complete: () => {
  224. // console.log('执行这个地方')
  225. // uni.hideLoading(); //停止 loading
  226. // _this.canvasWidth = uni.upx2px(641);
  227. // _this.canvasHeight = uni.upx2px(977);
  228. // _this.fromIndex = opt.nickname ? false : true; //当前页面为分享页面
  229. // _this.name = opt.nickname; //姓名
  230. // _this.name = _this.name.slice(0, 6);
  231. // _this.grade = opt.grade || '博士学位'; //学位
  232. // console.log(_this.grade);
  233. // const ctx = uni.createCanvasContext('canvas',this);
  234. // console.log(ctx)
  235. // // debugger
  236. // ctx.drawImage(_this.grade === '大学毕业' ? '../../static/icon/zs2-min.jpg' :
  237. // '../../static/icon/zs1-min.jpg', 0, 0, _this.canvasWidth, _this.canvasHeight);
  238. // ctx.save();
  239. // ctx.beginPath();
  240. // ctx.arc(uni.upx2px(320), uni.upx2px(400), uni.upx2px(40), 0, 2 * Math.PI, false);
  241. // ctx.clip();
  242. // ctx.drawImage(_this.headerImg, uni.upx2px(280), uni.upx2px(360), uni.upx2px(80), uni
  243. // .upx2px(80));
  244. // ctx.restore();
  245. // _this.$drawHonour(ctx, [
  246. // [uni.upx2px(26), _this.grade === '学霸' || _this.grade === '结业' ? '' : _this
  247. // .grade, uni.upx2px(320), uni.upx2px(555)
  248. // ],
  249. // [uni.upx2px(32), _this.name, uni.upx2px(315), uni.upx2px(495)],
  250. // [uni.upx2px(28), _this.season, uni.upx2px(440), uni.upx2px(595)]
  251. // // [uni.upx2px(24), _this.year, uni.upx2px(160), uni.upx2px(620)],
  252. // // [uni.upx2px(24), this.month, uni.upx2px(245), uni.upx2px(620)],
  253. // // [uni.upx2px(24), _this.day, uni.upx2px(330), uni.upx2px(620)],
  254. // // [uni.upx2px(24), 21, uni.upx2px(458), uni.upx2px(620)]
  255. // ]);
  256. // // _this.$hideLoading();
  257. // }
  258. // });
  259. // }
  260. };
  261. </script>
  262. <style lang="scss">
  263. .container {
  264. padding: 36rpx 54rpx;
  265. .certificate {
  266. // background-color: #fa6342;
  267. width: 642rpx;
  268. height: 998rpx;
  269. .bg {
  270. width: 100%;
  271. height: 100%;
  272. }
  273. }
  274. .share {
  275. padding: 22rpx 90rpx;
  276. display: flex;
  277. justify-content: center;
  278. align-items: center;
  279. .item {
  280. display: flex;
  281. justify-content: center;
  282. flex-direction: column;
  283. align-items: center;
  284. background: none;
  285. padding: 0;
  286. margin: 0;
  287. line-height: 70rpx !important;
  288. &::after,
  289. &::before {
  290. border: none;
  291. }
  292. .icon {
  293. width: 64rpx;
  294. height: 64rpx;
  295. }
  296. color: #F5222D;
  297. font-size: 20px;
  298. }
  299. }
  300. }
  301. .honour {
  302. @include page();
  303. &.share {
  304. border-top-color: #493225;
  305. }
  306. .content {
  307. display: flex;
  308. flex-direction: column;
  309. .top {
  310. width: 100%;
  311. height: 680rpx;
  312. background: #493225;
  313. border-bottom-right-radius: 375rpx 123rpx;
  314. border-bottom-left-radius: 375rpx 123rpx;
  315. position: relative;
  316. &.share {
  317. height: 890rpx;
  318. }
  319. #canvas {
  320. position: absolute;
  321. top: 56rpx;
  322. left: 50%;
  323. transform: translateX(-50%);
  324. &.share {
  325. top: 0;
  326. }
  327. }
  328. .bg {
  329. position: absolute;
  330. width: 566rpx;
  331. height: 464rpx;
  332. top: 35rpx;
  333. left: 50%;
  334. z-index: 1;
  335. transform: translateX(-50%);
  336. }
  337. .all {
  338. position: absolute;
  339. right: 32rpx;
  340. bottom: -13rpx;
  341. font-size: 26rpx;
  342. color: #fa6342;
  343. }
  344. }
  345. .bot {
  346. flex: 1;
  347. box-sizing: border-box;
  348. padding: 100rpx;
  349. .title {
  350. text-align: center;
  351. height: 45rpx;
  352. display: flex;
  353. justify-content: center;
  354. align-items: center;
  355. font-size: 36rpx;
  356. color: #fa6342;
  357. text {
  358. margin: 0 40rpx;
  359. }
  360. image {
  361. width: 48rpx;
  362. height: 45rpx;
  363. }
  364. }
  365. .text {
  366. margin-top: 80rpx;
  367. font-size: 30rpx;
  368. color: #666666;
  369. }
  370. .share-save {
  371. height: 60rpx;
  372. margin-top: 80rpx;
  373. display: flex;
  374. justify-content: space-between;
  375. .button {
  376. height: 100%;
  377. width: 240rpx;
  378. box-sizing: border-box;
  379. border: 2rpx solid #fa6342;
  380. border-radius: 30rpx;
  381. line-height: 56rpx;
  382. text-align: center;
  383. color: #fa6342;
  384. background: #ffffff;
  385. padding: 0;
  386. font-size: 24rpx;
  387. text {
  388. margin: 0 6rpx;
  389. vertical-align: middle;
  390. &.cuIcon {
  391. font-size: 36rpx;
  392. }
  393. }
  394. }
  395. }
  396. }
  397. }
  398. }
  399. .preview {
  400. background: linear-gradient(91deg, #F30000 1%, #FE4815 99%);
  401. color: #fff;
  402. padding: 10px 0;
  403. }
  404. </style>