微信小程序自定义分享按钮

1.声明 onShareAppMessage 函数
  onShareAppMessage() {

         return {

       title: '弹出分享时显示的分享标题'

        desc: '分享页面的内容',

        path: '/page/user?id=123' // 路径,传递参数到指定页面。

 

    }

      },

 
2.自定义按钮是需要在button标签上写上 open-type='share’属性,在dom中写入button组件

 
3.一般自定义按钮和button组件的样式会有冲突, 下面代码就是更改button组件的样式的:
button::after {
  border: none;

      }

      button {

  background-color: #fff;

     }
 

你可能感兴趣的:(微信小程序自定义分享按钮)