shareQrCode.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. <template>
  2. <view class="andr-shQ-padL30 andr-shQ-padR30 andr-shQ-Flex andr-shQ-FlexDirC">
  3. <view class="andr-shQ-w100B andr-shQ-Flex andr-shQ-JusCC">
  4. <swiper class="imgw750h375 matop" :indicator-dots="false" :current="current" @change="currentChange" >
  5. <swiper-item v-for="(item, index) in rwmListArr" :key="index"><image :src="item.wap_poster" mode="aspectFit" class="imgw750h375" /></swiper-item>
  6. </swiper>
  7. </view>
  8. <!-- <view class="baocun" @click="comfirm(userInfo.uid+'')">复制邀请码</view> -->
  9. <!-- #ifdef H5 -->
  10. <view class="baocun">长按二维码保存图片</view>
  11. <!-- #endif -->
  12. <!-- #ifdef MP-WEIXIN -->
  13. <view class="baocun" @click="seav">保存图片并转发</view>
  14. <!-- <button open-type="share" class="baocun btn" v-if="scLoading == 2">分享到微信</button> -->
  15. <!-- #endif -->
  16. </view>
  17. </template>
  18. <script>
  19. import { mapState } from 'vuex';
  20. import { spreadBanner } from '@/api/user.js';
  21. import { interceptor, saveUrl } from '@/utils/loginUtils';
  22. // #ifdef H5
  23. import { weixindata } from '@/utils/wxAuthorized';
  24. // #endif
  25. export default {
  26. data() {
  27. return {
  28. rwmListArr: [],
  29. current: 0,
  30. imgSrc: ''
  31. };
  32. },
  33. onLoad(option) {
  34. uni.showLoading({
  35. title: '邀请图生成中',
  36. mask: true
  37. });
  38. // 判断是否强制登录
  39. this.loadCodeList();
  40. // #ifdef MP-WEIXIN
  41. uni.authorize({
  42. scope: 'scope.writePhotosAlbum',
  43. complete() {}
  44. });
  45. // #endif
  46. },
  47. onShow() {
  48. if (this.loginInterceptor && !this.hasLogin) {
  49. saveUrl();
  50. // 登录拦截
  51. interceptor();
  52. }
  53. },
  54. //下拉刷新
  55. onPullDownRefresh() {
  56. let obj = this;
  57. //监听下拉刷新动作的执行方法,每次手动下拉刷新都会执行一次
  58. setTimeout(function() {
  59. obj.loadCodeList();
  60. uni.stopPullDownRefresh(); //停止下拉刷新动画
  61. }, 1000);
  62. },
  63. computed: {
  64. ...mapState(['weichatObj', 'baseURL', 'urlFile']),
  65. ...mapState('user', ['userInfo', 'orderInfo', 'hasLogin'])
  66. },
  67. methods: {
  68. comfirm(text) {
  69. // let text = this.userInfo.uid
  70. console.log(text);
  71. const result = this.uniCopy(text);
  72. if (result === false) {
  73. uni.showToast({
  74. title: '不支持'
  75. });
  76. } else {
  77. uni.showToast({
  78. title: '复制成功',
  79. icon: 'none'
  80. });
  81. }
  82. // this.$refs.popup.close();
  83. },
  84. uniCopy(content) {
  85. /**
  86. * 小程序端 和 app端的复制逻辑
  87. */
  88. //#ifndef H5
  89. uni.setClipboardData({
  90. data: content,
  91. success: function() {
  92. console.log('success');
  93. return true;
  94. }
  95. });
  96. //#endif
  97. /**
  98. * H5端的复制逻辑
  99. */
  100. // #ifdef H5
  101. if (!document.queryCommandSupported('copy')) {
  102. //为了兼容有些浏览器 queryCommandSupported 的判断
  103. // 不支持
  104. return false;
  105. }
  106. let textarea = document.createElement('textarea');
  107. textarea.value = content;
  108. textarea.readOnly = 'readOnly';
  109. document.body.appendChild(textarea);
  110. textarea.select(); // 选择对象
  111. textarea.setSelectionRange(0, content.length); //核心
  112. let result = document.execCommand('copy'); // 执行浏览器复制命令
  113. textarea.remove();
  114. return result;
  115. // #endif
  116. },
  117. loadCodeList() {
  118. let self = this;
  119. // 加载二维码信息
  120. // let andrUid = uni.getStorageSync('andrUid')||'';
  121. spreadBanner({
  122. // #ifdef H5
  123. type: 2,
  124. // #endif
  125. // #ifdef MP
  126. type: 1,
  127. // #endif
  128. }).then(e => {
  129. if (e.status == 200) {
  130. console.log(e.data)
  131. self.rwmListArr = e.data;
  132. // #ifdef H5
  133. self.imgSrc = self.rwmListArr[0].wap_poster;
  134. // #endif
  135. // #ifdef MP-WEIXIN
  136. self.imgSrc = self.rwmListArr[0].poster;
  137. // #endif
  138. }
  139. uni.hideLoading();
  140. });
  141. },
  142. currentChange(e) {
  143. this.current = e.detail.current;
  144. },
  145. // onShareAppMessage(options){
  146. // console.log(options,'options')
  147. // let userInfo = uni.getStorageSync('userInfo');
  148. // console.log(userInfo)
  149. //   let obj = this;
  150. //   // 设置菜单中的转发按钮触发转发事件时的转发内容
  151. //   let shareObj = {
  152. //     title: "邀请好友领券", // 默认是小程序的名称(可以写slogan等)
  153. //     path: '/pages/index/index?spread='+userInfo.uid, // 默认是当前页面,必须是以‘/’开头的完整路径
  154. //     imageUrl: obj.imgSrc,
  155. //     success: function(res){
  156. //       // 转发成功之后的回调
  157. //       if(res.errMsg == 'shareAppMessage:ok'){
  158. //       }
  159. //     },
  160. //     fail: function(){
  161. //       // 转发失败之后的回调
  162. //       if(res.errMsg == 'shareAppMessage:fail cancel'){
  163. //         // 用户取消转发
  164. //       }else if(res.errMsg == 'shareAppMessage:fail'){
  165. //         // 转发失败,其中 detail message 为详细失败信息
  166. //       }
  167. //     }
  168. //   };
  169. //   // 来自页面内的按钮的转发
  170. //   if( options.from == 'button' ){
  171. //     // 此处可以修改 shareObj 中的内容
  172. //     shareObj.path = '/pages/index/index?spread='+userInfo.uid;
  173. // console.log(shareObj.path,'shareObj.path')
  174. //   }
  175. //   // 返回shareObj
  176. //   return shareObj;
  177. // },
  178. // scClick() {
  179. // let self = this;
  180. // // #ifdef H5
  181. // self.imgSrc = self.rwmListArr[self.current].wap_poster;
  182. // // #endif
  183. // // #ifdef MP-WEIXIN
  184. // self.imgSrc = self.rwmListArr[self.current].poster;
  185. // // #endif
  186. // },
  187. // #ifdef MP-WEIXIN
  188. seav() {
  189. uni.getImageInfo({
  190. src: this.imgSrc,
  191. complete: function (result) {
  192. let path = result.path;
  193. uni.getSetting({
  194. success(res) {
  195. console.log(res)
  196. if (!res.authSetting['scope.writePhotosAlbum']) {
  197. uni.authorize({
  198. scope:'scope.writePhotosAlbum',
  199. success(res) {
  200. uni.saveImageToPhotosAlbum({
  201. filePath:path,
  202. complete(result) {
  203. }
  204. });
  205. },
  206. complete(result) {
  207. uni.showToast({
  208. title: '请先授权保存图片',
  209. duration: 2000,
  210. icon:'none'
  211. });
  212. obj.seav();
  213. }
  214. })
  215. }else{
  216. uni.saveImageToPhotosAlbum({
  217. filePath:path,
  218. complete(result) {
  219. uni.showToast({
  220. title: '保存图片成功!',
  221. duration: 2000,
  222. icon:'none'
  223. });
  224. }
  225. });
  226. }
  227. }
  228. });
  229. }
  230. });
  231. }
  232. // #endif
  233. }
  234. };
  235. </script>
  236. <style lang="scss">
  237. .imgw750h375 {
  238. width: 700rpx;
  239. height: 958rpx;
  240. }
  241. .matop{
  242. margin-top: 40rpx;
  243. }
  244. .andr-shQ-padL30 {
  245. padding-left: 30rpx;
  246. }
  247. .andr-shQ-padR30 {
  248. padding-right: 30rpx;
  249. }
  250. .andr-shQ-Flex {
  251. display: flex;
  252. }
  253. .andr-shQ-FlexDirC {
  254. flex-direction: column;
  255. }
  256. .andr-shQ-w100B {
  257. width: 100%;
  258. }
  259. .andr-shQ-JusCC {
  260. justify-content: center;
  261. }
  262. .andr-shQ-marginT30 {
  263. margin-top: 30rpx;
  264. }
  265. .andr-shQ-bgc06B163 {
  266. background-color: $base-color;
  267. }
  268. .andr-shQ-cFFF {
  269. color: #ffffff;
  270. }
  271. .andr-shQ-bdR50 {
  272. border-radius: 50rpx;
  273. }
  274. .andr-shQ-h86 {
  275. height: 86rpx;
  276. }
  277. .andr-shQ-AIC {
  278. align-items: center;
  279. }
  280. .baocun {
  281. color: #ffffff;
  282. background: $base-color;
  283. text-align: center;
  284. width: 80%;
  285. margin: 50rpx auto;
  286. font-size: 28rpx;
  287. padding: 25rpx 0rpx;
  288. border-radius: 50rpx;
  289. }
  290. .btn{
  291. padding: 0rpx 0rpx !important;
  292. margin: 0rpx auto;
  293. margin-bottom: 100rpx;
  294. }
  295. /* #ifdef H5 */
  296. .cbnagan {
  297. width: 80%;
  298. background: $base-color;
  299. margin: 50rpx auto;
  300. font-size: 28rpx;
  301. text-align: center;
  302. }
  303. /* #endif */
  304. </style>