shareQrCode.vue 8.3 KB

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