赞
踩
在做好小程序后,看到右上角三点的分享好友和朋友圈是暗灰色的不能点。如图
新建share.js文件全局引入
export default { data() { return { //设置默认的分享参数 sharedata: { title: '*************', path: '/pages/index/index', imageUrl: '', desc: '', content: '' } } }, //发送给朋友 onShareAppMessage(res) { return { title: this.sharedata.title, path: this.sharedata.path, imageUrl: this.sharedata.imageUrl, desc: this.sharedata.desc, content: this.sharedata.content, success(res) { uni.showToast({ title: '分享成功' }) }, fail(res) { uni.showToast({ title: '分享失败', icon: 'none' }) } } }, //uniapp微信小程序分享页面到微信朋友圈 onShareTimeline(res) { return { title: this.sharedata.title, query: '', imageUrl: this.sharedata.imageurl, success(res) { uni.showToast({ title: '分享成功' }) }, fail(res) { uni.showToast({ title: '分享失败', icon: 'none' }) } } } }
main.js 全局引入
import share from './util/share.js'
Vue.mixin(share)
这样子就可以用了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。