share-model.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. <template>
  2. <view class="content">
  3. <view class="tile">{{pageData.title}}</view>
  4. <view class="hflex acenter " style="box-sizing: border-box;padding: 0 30rpx;">
  5. <view class="img_box">
  6. <image :src="pageData.src" mode="aspectFill" class="img"></image>
  7. <view class="type">V</view>
  8. </view>
  9. <view class="text_style1">{{pageData.name}}</view>
  10. </view>
  11. <u-parse :content="pageData.content" style="box-sizing: border-box;padding: 0 30rpx;"></u-parse>
  12. <view class="box hflex acenter jbetween">
  13. <view class="hflex acenter ">
  14. <image class="box_icon" src="/static/images/comment/icon_pdf.png"></image>
  15. <view class="text_style1">{{pageData.fujian}}</view>
  16. </view>
  17. <view class="down hflex acenter jcenter">
  18. <u-icon name="download" color="#FFFFFF" size="20"></u-icon>
  19. </view>
  20. </view>
  21. <view class="date">发布于{{pageData.date}}</view>
  22. <view class="bottom hflex acenter jbetween">
  23. <view class="hflex acenter" @click="collect">
  24. <u-icon name="star" color="#444444" size="20" v-if="pageData.is_collect == 0"></u-icon>
  25. <u-icon name="star-fill" color="#506DFF" size="20" v-else></u-icon>
  26. <view class="text_style1">收藏</view>
  27. </view>
  28. <view class="btn" @click="share">分享</view>
  29. </view>
  30. <view class="share_content" v-if="share_show">
  31. <my-canvas :isDraw="true" :canvasData="canvasData" :imageSize="{width: 375, height: 667}" @generateImageSuccessful="generateImageSuccessful"></my-canvas>
  32. <view class="share_bottom">
  33. <view class="hflex acenter jbetween">
  34. <button class="vflex acenter jcenter bottom_item" open-type="share">
  35. <image src="/static/images/comment/wx.png" class="item_icon"></image>
  36. <view class="item_text">微信好友</view>
  37. </button>
  38. <button class="vflex acenter jcenter bottom_item" open-type="share">
  39. <image src="/static/images/comment/moments.png" class="item_icon"></image>
  40. <view class="item_text">朋友圈</view>
  41. </button>
  42. <view class="vflex acenter jcenter bottom_item" @click="saveImg">
  43. <image src="/static/images/comment/download.png" class="item_icon"></image>
  44. <view class="item_text">保存图片</view>
  45. </view>
  46. </view>
  47. <view class="share_cancel" @click="cancel">取消</view>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. import $api from '@/static/js/api.js'
  54. var that = ''
  55. export default {
  56. data() {
  57. return {
  58. pageData: {
  59. title: '在高质量发展中扎实推动共同富裕!',
  60. src: '/static/images/mine/avatar1.jpg',
  61. name: '船百知官方账号',
  62. is_collect: 0,
  63. content: `洗脸,是我们日常生活中每天都要进行的活动。俗话说得好:勤梳头,\n勤洗脸,有点儿倒霉也不显。光洁的脸庞不仅透露出积极向上的精神\n面貌。也是外在美最直接的表现形式。网络疯传的洗脸教育帖转发率\n之高,书店里出售的洗脸书销量之大,都反映出人们对于洗脸的重`,
  64. date: '2021年09月05日',
  65. fujian: '在发展中扎实推动共同富裕.pdf',
  66. code: '',
  67. },
  68. share_show: false,
  69. canvasData: [
  70. ],
  71. tempImage: "",
  72. }
  73. },
  74. onLoad() {
  75. that = this
  76. that.canvasData = [
  77. {
  78. type: 'rect',
  79. attr: {
  80. color: '#fff',
  81. x: 0,
  82. y: 0,
  83. width: 325,
  84. height: 384,
  85. radian_1: 10,
  86. }
  87. },
  88. {
  89. type: 'text',
  90. attr: {
  91. text: that.pageData.title,
  92. x: 10,
  93. y: 15,
  94. color: '#222',
  95. size: 9,
  96. weight: '500',
  97. writingMode: 'initial' ,
  98. }
  99. },
  100. {
  101. type: 'image',
  102. attr: {
  103. image: that.pageData.src,
  104. x: 10,
  105. y: 20,
  106. width: 14,
  107. height: 14,
  108. radian_1: 7,
  109. radian_2: 7,
  110. radian_3: 7,
  111. radian_4: 7
  112. }
  113. },
  114. {
  115. type: 'text',
  116. attr: {
  117. text: that.pageData.name,
  118. x: 30,
  119. y: 28,
  120. color: '#444',
  121. size: 8,
  122. weight: '400',
  123. writingMode: 'initial' ,
  124. }
  125. },
  126. {
  127. type: 'text',
  128. attr: {
  129. text: that.pageData.content,
  130. x: 10,
  131. y: 45,
  132. color: '#444',
  133. size: 7,
  134. weight: '400',
  135. writingMode: 'initial' ,
  136. }
  137. },
  138. {
  139. type: 'text',
  140. attr: {
  141. text: '扫码查看更多',
  142. color: '#444',
  143. size: 5,
  144. x: 65,
  145. y: 105,
  146. weight: '400',
  147. writingMode: 'initial' ,
  148. }
  149. },
  150. {
  151. type: 'line',
  152. attr: {
  153. color: '#C3C3C3',
  154. x: 20,
  155. y: 115,
  156. width: 1,
  157. height: 120
  158. }
  159. },
  160. {
  161. type: 'text',
  162. attr: {
  163. text: '船百知',
  164. color: '#222222',
  165. size: 8,
  166. x: 10,
  167. y: 130,
  168. weight: '400',
  169. writingMode: 'initial' ,
  170. }
  171. },
  172. {
  173. type: 'text',
  174. attr: {
  175. text: '船百知伴您一起扬帆起航,驶向成功彼岸。',
  176. color: '#999999',
  177. size: 5,
  178. x: 10,
  179. y: 140,
  180. weight: '400',
  181. writingMode: 'initial' ,
  182. }
  183. },
  184. {
  185. type: 'image',
  186. attr: {
  187. image: that.pageData.src,
  188. x: 110,
  189. y: 120,
  190. width: 34,
  191. height: 34,
  192. }
  193. },
  194. ]
  195. },
  196. onShareAppMessage(res) {
  197. console.log(res);
  198. if (res.from === 'button') {// 来自页面内分享按钮
  199. console.log(res.target)
  200. }
  201. return {
  202. title: '船百知', //分享的名称
  203. }
  204. },
  205. onShareTimeline(res) {
  206. console.log(res);
  207. return {
  208. title: '船百知',
  209. type: 0,
  210. summary: "",
  211. }
  212. },
  213. methods: {
  214. // 收藏
  215. collect() {
  216. if(that.pageData.is_collect == 0) {
  217. that.pageData.is_collect = 1
  218. $api.info('收藏成功')
  219. } else {
  220. that.pageData.is_collect = 0
  221. $api.info('取消收藏')
  222. }
  223. },
  224. // 分享
  225. share() {
  226. that.share_show = true
  227. const ctx = uni.createCanvasContext('myCanvas')
  228. ctx.draw()
  229. },
  230. generateImageSuccessful(image) {
  231. console.log(image);
  232. this.tempImage = image;
  233. },
  234. saveImg() {
  235. uni.authorize({
  236. scope: 'scope.writePhotosAlbum',
  237. success() {
  238. uni.saveImageToPhotosAlbum({
  239. filePath: that.tempImage,
  240. success: function () {
  241. console.log('save success');
  242. }
  243. });
  244. }
  245. })
  246. },
  247. // 取消
  248. cancel() {
  249. that.share_show = false
  250. },
  251. },
  252. }
  253. </script>
  254. <style lang="scss" scoped>
  255. .content::v-deep {
  256. position: relative;
  257. .tile {
  258. box-sizing: border-box;
  259. padding: 24rpx 30rpx;
  260. font-size: 40rpx;
  261. font-weight: 500;
  262. color: #333333;
  263. line-height: 56rpx;
  264. }
  265. .img_box {
  266. width: 56rpx;
  267. height: 56rpx;
  268. position: relative;
  269. .img {
  270. width: 56rpx;
  271. height: 56rpx;
  272. border-radius: 50%;
  273. }
  274. .type {
  275. position: absolute;
  276. right: 0rpx;
  277. bottom: 0rpx;
  278. width: 28rpx;
  279. height: 28rpx;
  280. background: #506DFF;
  281. border-radius: 12rpx 4rpx 12rpx 4rpx;
  282. font-size: 20rpx;
  283. color: #fff;
  284. text-align: center;
  285. line-height: 28rpx;
  286. }
  287. }
  288. .text_style1 {
  289. margin-left: 16rpx;
  290. font-size: 26rpx;
  291. font-weight: 400;
  292. color: #222222;
  293. line-height: 36rpx;
  294. }
  295. .box {
  296. margin: 24rpx 30rpx;
  297. height: 116rpx;
  298. background: #F4F4F4;
  299. border-radius: 16rpx;
  300. box-sizing: border-box;
  301. padding: 24rpx 28rpx;
  302. .box_icon {
  303. width: 56rpx;
  304. height: 68rpx;
  305. }
  306. .down {
  307. width: 48rpx;
  308. height: 48rpx;
  309. border-radius: 50%;
  310. background: #506DFF;
  311. }
  312. }
  313. .date {
  314. margin-bottom: 186rpx;
  315. box-sizing: border-box;
  316. padding: 0 30rpx;
  317. font-size: 26rpx;
  318. font-weight: 400;
  319. color: #989898;
  320. line-height: 18px;
  321. }
  322. .bottom {
  323. width: 100%;
  324. z-index: 9;
  325. position: fixed;
  326. bottom: 0;
  327. height: 166rpx;
  328. background: #FFFFFF;
  329. box-sizing: border-box;
  330. padding: 8rpx 30rpx 74rpx;
  331. .btn {
  332. width: 510rpx;
  333. height: 80rpx;
  334. background: #506DFF;
  335. border-radius: 42rpx;
  336. font-size: 32rpx;
  337. font-weight: 500;
  338. color: #FFFFFF;
  339. line-height: 80rpx;
  340. text-align: center;
  341. }
  342. }
  343. .cCanvas {
  344. position: absolute;
  345. top: 188rpx;
  346. left: 50rpx;
  347. background-color: #fff;
  348. z-index: 100;
  349. border-radius: 20rpx;
  350. }
  351. .share_content {
  352. position: absolute;
  353. top: 0;
  354. left: 0;
  355. z-index: 99;
  356. width: 100vw;
  357. height: 100vh;
  358. background: rgba(0,0,0,0.5);
  359. backdrop-filter: blur(5px);
  360. .share_box {
  361. margin: 148rpx auto;
  362. width: 650rpx;
  363. background: #FFFFFF;
  364. border-radius: 20rpx;
  365. box-sizing: border-box;
  366. padding: 0 40rpx;
  367. .box_bottom {
  368. width: 100%;
  369. padding: 34rpx 0 16rpx;
  370. border-top: 1rpx dashed #C3C3C3;
  371. .bottom_left1 {
  372. font-size: 32rpx;
  373. font-weight: 500;
  374. color: #222222;
  375. line-height: 44rpx;
  376. padding-bottom: 20rpx;
  377. }
  378. .bottom_left2 {
  379. font-size: 22rpx;
  380. font-weight: 400;
  381. color: #999999;
  382. line-height: 32rpx;
  383. }
  384. .bottom_right {
  385. width: 136rpx;
  386. height: 136rpx;
  387. }
  388. }
  389. }
  390. .canvas {
  391. position: absolute;
  392. top: 188rpx;
  393. left: 50rpx;
  394. width: 650rpx;
  395. min-height: 494rpx;
  396. background: #FFFFFF;
  397. border-radius: 20rpx;
  398. }
  399. .share_bottom {
  400. position: fixed;
  401. bottom: 0;
  402. width: 100%;
  403. height: 388rpx;
  404. background: #F5F7FF;
  405. border-radius: 40rpx 40rpx 0px 0px;
  406. .bottom_item {
  407. width: 33%;
  408. margin: 50rpx 0 90rpx;
  409. border: none !important;
  410. background-color: #F5F7FF !important;
  411. .item_icon {
  412. width: 76rpx;
  413. height: 76rpx;
  414. }
  415. .item_text {
  416. font-size: 26rpx;
  417. font-weight: 400;
  418. color: #333333;
  419. line-height: 36rpx;
  420. margin-top: 12rpx;
  421. }
  422. }
  423. button::after {
  424. border: none !important;
  425. }
  426. .share_cancel {
  427. width: 100%;
  428. text-align: center;
  429. font-size: 32rpx;
  430. font-weight: 400;
  431. color: #333333;
  432. line-height: 44rpx;
  433. }
  434. }
  435. }
  436. }
  437. </style>