uni-app实现微信小程序长按二维码扫码加群或好友
uni-app 2024-09-17 09:17:10

 这里重点是,小程序,H5不可以!

 

1、实现识别二维码加好友,只要一个参数 show-menu-by-longpress即可

XML/HTML Code复制内容到剪贴板
  1. <template>  
  2.     <view>  
  3.         <view class="tit">  
  4.             欢迎扫码加入  
  5.         </view>  
  6.         <image show-menu-by-longpress="true" src="/static/img/qrcode/1.jpg" class="btn-icon" @click="previewImage">  
  7.         </image>  
  8.     </view>  
  9. </template>  
  10.   
  11. <script>  
  12.     export default {  
  13.         data() {  
  14.             return {  
  15.   
  16.             }  
  17.         },  
  18.         onLoad() {  
  19.   
  20.         },  
  21.         onReady() {  
  22.   
  23.         },  
  24.   
  25.         computed: {  
  26.   
  27.         },  
  28.         methods: {  
  29.             previewImage() {  
  30.                 uni.previewImage({  
  31.                     // 需要预览的图片链接列表。若无需预览,可以注释urls  
  32.                     urls: [e.target.src],  
  33.                     // 为当前显示图片的链接/索引值  
  34.                     current: e.target.src,  
  35.                     // 图片指示器样式    
  36.                     indicator: 'default',  
  37.                     // 是否可循环预览  
  38.                     loop: false,  
  39.                     success: res => {  
  40.                         console.log('previewImage res', res);  
  41.                     },  
  42.                     fail: err => {  
  43.                         console.log('previewImage err', err);  
  44.                     }  
  45.                 });  
  46.             }  
  47.         }  
  48.     }  
  49. </script>  
  50. </script>  
  51.   
  52. <style lang="scss" scoped>  
  53.     page {  
  54.         .tit {  
  55.             text-align: center;  
  56.             margin: 15px auto;  
  57.         }  
  58.   
  59.         .btn-icon {  
  60.             display: block;  
  61.             height: 794rpx;  
  62.             width: 630rpx;  
  63.             margin: 15px auto;  
  64.         }  
  65.     }  
  66. </style>  

 

对应的文档地址:https://developers.weixin.qq.com/miniprogram/dev/component/image.html#%E6%94%AF%E6%8C%81%E9%95%BF%E6%8C%89%E8%AF%86%E5%88%AB%E7%9A%84%E7%A0%81

 

2、实现点击事件跳转到指定公众号

公众号组件,使用official-account 引导关注

对应的文档地址:https://developers.weixin.qq.com/miniprogram/dev/component/official-account.html

 

 

 

本文来自于:http://www.yoyo88.cn/study/uniapp/708.html

下一篇 返回列表
Powered by yoyo苏ICP备15045725号