invite.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <template>
  2. <view class="content">
  3. <u-navbar title="邀请好友" @leftClick="leftClick" :bgColor="bgColor" placeholder safeAreaInsetTop></u-navbar>
  4. <view class="title">邀请好友加入忆象</view>
  5. <view class="box vflex acenter jcenter">
  6. <view class="user hflex acenter">
  7. <image :src="user.avatar" mode="aspectFill"></image>
  8. <view class="user-right vflex jbetween">
  9. <text>{{user.username}}</text>
  10. <text>分享邀请码或者链接给好友</text>
  11. </view>
  12. </view>
  13. <view class="code-text vflex acenter">
  14. <view class="hflex acenter jcenter">
  15. <view class="text">邀请码</view>
  16. <view class="text">{{user.invite_code}}</view>
  17. </view>
  18. <view class="copy" @click="copy">复制邀请码</view>
  19. </view>
  20. <view class="img-box hflex acenter jcenter">
  21. <yz-qr :qrPath.sync="qrPath" :text="user.invite_code" :size="200" quality="L" colorDark="#000000"
  22. colorLight="#ffffff"></yz-qr>
  23. </view>
  24. </view>
  25. <view class="bottom hflex acenter jbetween">
  26. <button class="save" @click="setimg">保存图片</button>
  27. <button class="invite" @click="share">邀请好友</button>
  28. </view>
  29. <view class="poster-pop" v-if="posterImageStatus">
  30. <image :src="posterImage"></image>
  31. </view>
  32. <view class="mask" v-if="posterImageStatus"></view>
  33. <canvas class="canvas" canvas-id="myCanvas" v-if="canvasStatus"></canvas>
  34. </view>
  35. </template>
  36. <script>
  37. import $api from '@/static/js/api.js'
  38. var that = ''
  39. export default {
  40. data() {
  41. return {
  42. user: {},
  43. qrPath: '',
  44. text: 'hello',
  45. posterImage: '',
  46. posterImageStatus: false,
  47. canvasStatus: false,
  48. bgColor: 'rgba(0, 0, 0, 0)'
  49. }
  50. },
  51. onLoad() {
  52. that = this
  53. this.getuser()
  54. },
  55. onPageScroll(e) {
  56. console.log(e);
  57. if (e.scrollTop > 0) {
  58. this.bgColor = 'rgba(255,255,255)'
  59. } else {
  60. this.bgColor = 'rgba(0, 0, 0, 0)'
  61. }
  62. },
  63. watch: {
  64. qrPath(newVal, oldVal) {
  65. return this.qrPath;
  66. }
  67. },
  68. methods: {
  69. share() {
  70. // this.goPoster();
  71. uni.share({
  72. provider: "weixin",
  73. scene: "WXSceneSession",
  74. type: 2,
  75. imageUrl: this.qrPath,
  76. success: function (res) {
  77. console.log("success:" + JSON.stringify(res));
  78. },
  79. fail: function (err) {
  80. console.log("fail:" + JSON.stringify(err));
  81. }
  82. });
  83. },
  84. setimg() {
  85. uni.saveImageToPhotosAlbum({
  86. filePath: this.qrPath,
  87. success: function () {
  88. console.log('save success');
  89. $api.info('保存成功')
  90. }
  91. });
  92. },
  93. goPoster() {
  94. },
  95. copy() {
  96. uni.setClipboardData({
  97. data: this.user.invite_code,
  98. success: function() {
  99. this.$u.toasta('复制成功')
  100. }
  101. })
  102. },
  103. getuser() {
  104. $api.req({
  105. url: 'user/info',
  106. }, function(res) {
  107. if (res.code == 10000) {
  108. that.user = res.data
  109. }
  110. })
  111. },
  112. leftClick() {
  113. uni.navigateBack()
  114. },
  115. },
  116. }
  117. </script>
  118. <style lang="scss">
  119. .content::v-deep {
  120. background: url('static/invite_bg.png') no-repeat;
  121. min-height: 100vh;
  122. background-size: 100% 100%;
  123. padding: 42rpx 34rpx;
  124. .u-navbar--fixed {
  125. z-index: 999;
  126. }
  127. .title {
  128. width: 100%;
  129. text-align: center;
  130. font-size: 44rpx;
  131. font-family: PingFangSC, PingFang SC;
  132. font-weight: 600;
  133. color: #222222;
  134. padding: 88rpx 0 38rpx;
  135. }
  136. .box {
  137. background: #FFFFFF;
  138. border-radius: 20rpx;
  139. box-sizing: border-box;
  140. width: 100%;
  141. padding: 48rpx 30rpx;
  142. .user {
  143. width: 100%;
  144. image {
  145. width: 92rpx;
  146. height: 92rpx;
  147. border-radius: 50%;
  148. }
  149. .user-right {
  150. padding: 0 0 0 20rpx;
  151. height: 92rpx;
  152. text:first-child {
  153. font-size: 32rpx;
  154. font-family: SFPro, SFPro;
  155. font-weight: 500;
  156. color: #222222;
  157. }
  158. text:last-child {
  159. font-size: 24rpx;
  160. font-family: PingFangSC, PingFang SC;
  161. font-weight: 400;
  162. color: #222222;
  163. }
  164. }
  165. }
  166. .code-text {
  167. width: 602rpx;
  168. background: #F4F4F4;
  169. border-radius: 12rpx;
  170. padding: 40rpx 0;
  171. margin: 36rpx 0 68rpx;
  172. .text {
  173. font-size: 36rpx;
  174. font-family: PingFangSC, PingFang SC;
  175. font-weight: 500;
  176. color: #222222;
  177. padding: 0 48rpx 0 0;
  178. }
  179. .text:nth-child(2) {
  180. padding: 0 0 0 48rpx;
  181. border-left: 1px solid #E0E0E0;
  182. }
  183. .copy {
  184. padding: 32rpx 0 0;
  185. font-size: 24rpx;
  186. font-family: PingFangSC, PingFang SC;
  187. font-weight: 400;
  188. color: #0C66C2;
  189. }
  190. }
  191. .img-box {
  192. width: 526rpx;
  193. height: 526rpx;
  194. background: url('static/code_bg.png') no-repeat;
  195. background-size: 100% 100%;
  196. margin: 0 0 34rpx;
  197. image {
  198. width: 422rpx;
  199. height: 422rpx;
  200. }
  201. }
  202. }
  203. .bottom {
  204. padding: 28rpx 0 60rpx;
  205. .save {
  206. width: 296rpx;
  207. height: 96rpx;
  208. background: #E3E3E3;
  209. border-radius: 56rpx;
  210. font-size: 32rpx;
  211. font-family: PingFangSC, PingFang SC;
  212. font-weight: 500;
  213. color: #444444;
  214. padding: 0;
  215. line-height: 96rpx;
  216. }
  217. .invite {
  218. width: 352rpx;
  219. height: 96rpx;
  220. background: #00B0B0;
  221. border-radius: 48rpx;
  222. font-size: 32rpx;
  223. font-family: PingFangSC, PingFang SC;
  224. font-weight: 500;
  225. color: #FFFFFF;
  226. padding: 0;
  227. line-height: 96rpx;
  228. }
  229. }
  230. .u-navbar {
  231. position: fixed;
  232. top: 0;
  233. left: 0;
  234. width: 100%;
  235. }
  236. }
  237. </style>