12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- export default {
- data() {
- return {
- }
- },
- onLoad: function() {
- wx.showShareMenu({
- withShareTicket: true,
- menus: ["shareAppMessage", "shareTimeline"]
- })
- },
- onShareAppMessage(res) {
- debugger
- let that = this;
- let imageUrl = that.shareUrl || '';
- if (res.from === 'button') {
- //这块需要传参,不然链接地址进去获取不到数据
- let path = `/` + that.$scope.route + `?item=` + that.$scope.options.item;
- return {
- title: '商品分享~',
- path: path,
- imageUrl: imageUrl
- };
- }
- // if (res.from === 'menu') {
- // return {
- // title: '商通线上商城',
- // path: '/pages/tabBarPro/index/index',
- // imageUrl: imageUrl
- // };
- // }
- },
- // 分享到朋友圈
- onShareTimeline() {
- return {
- title: '商通线上商城',
- path: '/pages/index/index',
- imageUrl: 'https://cdn.uviewui.com/uview/swiper/1.jpg'
- };
- },
- methods: {
- }
- }
|