1.1.44
This commit is contained in:
parent
1eb6284ca3
commit
bc4a8a2052
@ -47,7 +47,7 @@ Page({
|
|||||||
*/
|
*/
|
||||||
onShareAppMessage() {
|
onShareAppMessage() {
|
||||||
// 构建页面参数
|
// 构建页面参数
|
||||||
let params = App.getShareUrlParams({
|
const params = App.getShareUrlParams({
|
||||||
'article_id': this.data.detail.article_id
|
'article_id': this.data.detail.article_id
|
||||||
});
|
});
|
||||||
return {
|
return {
|
||||||
@ -56,4 +56,20 @@ Page({
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
|
'article_id': this.data.detail.article_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
// title: this.data.detail.article_title,
|
||||||
|
path: "/pages/article/detail/index?" + params
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
})
|
})
|
@ -96,16 +96,6 @@ Page({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* 分享当前页面
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
return {
|
|
||||||
title: '文章首页',
|
|
||||||
path: "/pages/article/index?" + App.getShareUrlParams()
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 下拉到底加载数据
|
* 下拉到底加载数据
|
||||||
*/
|
*/
|
||||||
@ -136,4 +126,27 @@ Page({
|
|||||||
scrollHeight
|
scrollHeight
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享当前页面
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
return {
|
||||||
|
title: '文章首页',
|
||||||
|
path: "/pages/article/index?" + App.getShareUrlParams()
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
return {
|
||||||
|
title: '文章首页',
|
||||||
|
path: "/pages/article/index?" + App.getShareUrlParams()
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
})
|
})
|
@ -510,12 +510,29 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户点击右上角分享
|
* 分享当前页面
|
||||||
*/
|
*/
|
||||||
onShareAppMessage() {
|
onShareAppMessage() {
|
||||||
let _this = this;
|
const _this = this;
|
||||||
// 构建页面参数
|
// 构建页面参数
|
||||||
let params = App.getShareUrlParams({
|
const params = App.getShareUrlParams({
|
||||||
|
active_id: _this.data.active.active_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.detail.goods_name,
|
||||||
|
path: `/pages/bargain/goods/index?${params}`
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
active_id: _this.data.active.active_id
|
active_id: _this.data.active.active_id
|
||||||
});
|
});
|
||||||
return {
|
return {
|
||||||
|
@ -235,12 +235,27 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户点击右上角分享
|
* 分享当前页面
|
||||||
*/
|
*/
|
||||||
onShareAppMessage() {
|
onShareAppMessage() {
|
||||||
let _this = this;
|
const _this = this;
|
||||||
// 构建页面参数
|
// 构建页面参数
|
||||||
let params = App.getShareUrlParams();
|
const params = App.getShareUrlParams();
|
||||||
|
return {
|
||||||
|
title: '砍价专区',
|
||||||
|
path: `/pages/bargain/index/index?${params}`
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams();
|
||||||
return {
|
return {
|
||||||
title: '砍价专区',
|
title: '砍价专区',
|
||||||
path: `/pages/bargain/index/index?${params}`
|
path: `/pages/bargain/index/index?${params}`
|
||||||
|
@ -216,12 +216,29 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户点击右上角分享
|
* 分享当前页面
|
||||||
*/
|
*/
|
||||||
onShareAppMessage() {
|
onShareAppMessage() {
|
||||||
let _this = this;
|
const _this = this;
|
||||||
// 构建页面参数
|
// 构建页面参数
|
||||||
let params = App.getShareUrlParams({
|
const params = App.getShareUrlParams({
|
||||||
|
task_id: _this.data.task_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.active.share_title,
|
||||||
|
path: `/pages/bargain/task/index?${params}`
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
task_id: _this.data.task_id
|
task_id: _this.data.task_id
|
||||||
});
|
});
|
||||||
return {
|
return {
|
||||||
|
@ -78,11 +78,24 @@ Page({
|
|||||||
* 设置分享内容
|
* 设置分享内容
|
||||||
*/
|
*/
|
||||||
onShareAppMessage() {
|
onShareAppMessage() {
|
||||||
let _this = this;
|
const _this = this;
|
||||||
return {
|
return {
|
||||||
title: _this.data.templet.share_title,
|
title: _this.data.templet.share_title,
|
||||||
path: '/pages/category/index?' + App.getShareUrlParams()
|
path: '/pages/category/index?' + App.getShareUrlParams()
|
||||||
};
|
};
|
||||||
}
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
return {
|
||||||
|
title: _this.data.templet.share_title,
|
||||||
|
path: '/pages/category/index?' + App.getShareUrlParams()
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
});
|
});
|
@ -137,17 +137,6 @@ Page({
|
|||||||
this.getGoodsList(true, ++this.data.page);
|
this.getGoodsList(true, ++this.data.page);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* 设置分享内容
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
// 构建分享参数
|
|
||||||
return {
|
|
||||||
title: "全部分类",
|
|
||||||
path: "/pages/category/index?" + App.getShareUrlParams()
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 商品搜索
|
* 商品搜索
|
||||||
*/
|
*/
|
||||||
@ -165,4 +154,28 @@ Page({
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置分享内容
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
// 构建分享参数
|
||||||
|
return {
|
||||||
|
title: "全部分类",
|
||||||
|
path: "/pages/category/index?" + App.getShareUrlParams()
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
// 构建分享参数
|
||||||
|
return {
|
||||||
|
title: "全部分类",
|
||||||
|
path: "/pages/category/index?" + App.getShareUrlParams()
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
});
|
});
|
@ -52,13 +52,23 @@ Page({
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下拉刷新
|
||||||
|
*/
|
||||||
|
onPullDownRefresh: function() {
|
||||||
|
// 获取首页数据
|
||||||
|
this.getPageData(function() {
|
||||||
|
wx.stopPullDownRefresh();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分享当前页面
|
* 分享当前页面
|
||||||
*/
|
*/
|
||||||
onShareAppMessage: function() {
|
onShareAppMessage: function() {
|
||||||
let _this = this;
|
const _this = this;
|
||||||
// 构建页面参数
|
// 构建页面参数
|
||||||
let params = App.getShareUrlParams({
|
const params = App.getShareUrlParams({
|
||||||
'page_id': _this.data.page_id
|
'page_id': _this.data.page_id
|
||||||
});
|
});
|
||||||
return {
|
return {
|
||||||
@ -68,13 +78,20 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 下拉刷新
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
*/
|
*/
|
||||||
onPullDownRefresh: function() {
|
onShareTimeline: function() {
|
||||||
// 获取首页数据
|
const _this = this;
|
||||||
this.getPageData(function() {
|
// 构建页面参数
|
||||||
wx.stopPullDownRefresh();
|
const params = App.getShareUrlParams({
|
||||||
|
'page_id': _this.data.page_id
|
||||||
});
|
});
|
||||||
}
|
return {
|
||||||
|
title: _this.data.page.params.share_title,
|
||||||
|
path: "/pages/custom/index?" + params
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
});
|
});
|
@ -346,21 +346,6 @@ Page({
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* 分享当前页面
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
let _this = this;
|
|
||||||
// 构建页面参数
|
|
||||||
let params = App.getShareUrlParams({
|
|
||||||
'goods_id': _this.data.goods_id
|
|
||||||
});
|
|
||||||
return {
|
|
||||||
title: _this.data.detail.goods_name,
|
|
||||||
path: "/pages/goods/index?" + params
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 显示分享选项
|
* 显示分享选项
|
||||||
*/
|
*/
|
||||||
@ -487,4 +472,36 @@ Page({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享当前页面
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
|
'goods_id': _this.data.goods_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.detail.goods_name,
|
||||||
|
path: "/pages/goods/index?" + params
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
|
'goods_id': _this.data.goods_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.detail.goods_name,
|
||||||
|
path: "/pages/goods/index?" + params
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
})
|
})
|
@ -13,7 +13,7 @@ Page({
|
|||||||
/**
|
/**
|
||||||
* 生命周期函数--监听页面加载
|
* 生命周期函数--监听页面加载
|
||||||
*/
|
*/
|
||||||
onLoad: function(options) {
|
onLoad(options) {
|
||||||
// 当前页面参数
|
// 当前页面参数
|
||||||
this.setData({
|
this.setData({
|
||||||
options
|
options
|
||||||
@ -25,11 +25,11 @@ Page({
|
|||||||
/**
|
/**
|
||||||
* 加载页面数据
|
* 加载页面数据
|
||||||
*/
|
*/
|
||||||
getPageData: function(callback) {
|
getPageData(callback) {
|
||||||
let _this = this;
|
let _this = this;
|
||||||
App._get('page/index', {
|
App._get('page/index', {
|
||||||
page_id: _this.data.options.page_id || 0
|
page_id: _this.data.options.page_id || 0
|
||||||
}, function(result) {
|
}, result => {
|
||||||
// 设置顶部导航栏栏
|
// 设置顶部导航栏栏
|
||||||
_this.setPageBar(result.data.page);
|
_this.setPageBar(result.data.page);
|
||||||
_this.setData(result.data);
|
_this.setData(result.data);
|
||||||
@ -41,7 +41,7 @@ Page({
|
|||||||
/**
|
/**
|
||||||
* 设置顶部导航栏
|
* 设置顶部导航栏
|
||||||
*/
|
*/
|
||||||
setPageBar: function(page) {
|
setPageBar(page) {
|
||||||
// 设置页面标题
|
// 设置页面标题
|
||||||
wx.setNavigationBarTitle({
|
wx.setNavigationBarTitle({
|
||||||
title: page.params.title
|
title: page.params.title
|
||||||
@ -53,11 +53,21 @@ Page({
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下拉刷新
|
||||||
|
*/
|
||||||
|
onPullDownRefresh() {
|
||||||
|
// 获取首页数据
|
||||||
|
this.getPageData(function () {
|
||||||
|
wx.stopPullDownRefresh();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分享当前页面
|
* 分享当前页面
|
||||||
*/
|
*/
|
||||||
onShareAppMessage() {
|
onShareAppMessage() {
|
||||||
let _this = this;
|
const _this = this;
|
||||||
return {
|
return {
|
||||||
title: _this.data.page.params.share_title,
|
title: _this.data.page.params.share_title,
|
||||||
path: "/pages/index/index?" + App.getShareUrlParams()
|
path: "/pages/index/index?" + App.getShareUrlParams()
|
||||||
@ -65,32 +75,16 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 下拉刷新
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
*/
|
*/
|
||||||
onPullDownRefresh: function() {
|
onShareTimeline() {
|
||||||
// 获取首页数据
|
const _this = this;
|
||||||
this.getPageData(function() {
|
return {
|
||||||
wx.stopPullDownRefresh();
|
title: _this.data.page.params.share_title,
|
||||||
});
|
path: "/pages/index/index?" + App.getShareUrlParams()
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// /**
|
|
||||||
// * 返回顶部
|
|
||||||
// */
|
|
||||||
// goTop: function(t) {
|
|
||||||
// this.setData({
|
|
||||||
// scrollTop: 0
|
|
||||||
// });
|
|
||||||
// },
|
|
||||||
|
|
||||||
// scroll: function(t) {
|
|
||||||
// this.setData({
|
|
||||||
// indexSearch: t.detail.scrollTop
|
|
||||||
// }), t.detail.scrollTop > 300 ? this.setData({
|
|
||||||
// floorstatus: !0
|
|
||||||
// }) : this.setData({
|
|
||||||
// floorstatus: !1
|
|
||||||
// });
|
|
||||||
// },
|
|
||||||
|
|
||||||
});
|
});
|
@ -206,7 +206,7 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户点击右上角分享
|
* 分享当前页面
|
||||||
*/
|
*/
|
||||||
onShareAppMessage() {
|
onShareAppMessage() {
|
||||||
return {
|
return {
|
||||||
@ -215,4 +215,16 @@ Page({
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
return {
|
||||||
|
title: '直播列表',
|
||||||
|
path: "/pages/live/index?" + App.getShareUrlParams()
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
})
|
})
|
@ -400,21 +400,6 @@ Page({
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* 分享当前页面
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
let _this = this;
|
|
||||||
// 构建页面参数
|
|
||||||
let params = App.getShareUrlParams({
|
|
||||||
'active_id': _this.data.detail.active_id
|
|
||||||
});
|
|
||||||
return {
|
|
||||||
title: _this.data.goods.goods_name,
|
|
||||||
path: "/pages/sharing/active/index?" + params
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 确认购买弹窗
|
* 确认购买弹窗
|
||||||
*/
|
*/
|
||||||
@ -441,4 +426,36 @@ Page({
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享当前页面
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
|
'active_id': _this.data.detail.active_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.goods.goods_name,
|
||||||
|
path: "/pages/sharing/active/index?" + params
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
|
'active_id': _this.data.detail.active_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.goods.goods_name,
|
||||||
|
path: "/pages/sharing/active/index?" + params
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
})
|
})
|
@ -361,21 +361,6 @@ Page({
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* 分享当前页面
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
let _this = this;
|
|
||||||
// 构建页面参数
|
|
||||||
let params = App.getShareUrlParams({
|
|
||||||
'goods_id': _this.data.goods_id
|
|
||||||
});
|
|
||||||
return {
|
|
||||||
title: _this.data.detail.goods_name,
|
|
||||||
path: "/pages/sharing/goods/index?" + params
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 显示分享选项
|
* 显示分享选项
|
||||||
*/
|
*/
|
||||||
@ -605,4 +590,37 @@ Page({
|
|||||||
url: '../active/index?active_id=' + e.currentTarget.dataset.id,
|
url: '../active/index?active_id=' + e.currentTarget.dataset.id,
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享当前页面
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
|
'goods_id': _this.data.goods_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.detail.goods_name,
|
||||||
|
path: "/pages/sharing/goods/index?" + params
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
|
'goods_id': _this.data.goods_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.detail.goods_name,
|
||||||
|
path: "/pages/sharing/goods/index?" + params
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
})
|
})
|
@ -22,7 +22,7 @@ Page({
|
|||||||
/**
|
/**
|
||||||
* 生命周期函数--监听页面加载
|
* 生命周期函数--监听页面加载
|
||||||
*/
|
*/
|
||||||
onLoad: function(options) {
|
onLoad(options) {
|
||||||
let _this = this;
|
let _this = this;
|
||||||
// Api:获取拼团首页
|
// Api:获取拼团首页
|
||||||
_this.setListHeight();
|
_this.setListHeight();
|
||||||
@ -35,7 +35,7 @@ Page({
|
|||||||
getIndexData() {
|
getIndexData() {
|
||||||
let _this = this;
|
let _this = this;
|
||||||
// 获取拼团首页
|
// 获取拼团首页
|
||||||
App._get('sharing.index/index', {}, function(result) {
|
App._get('sharing.index/index', {}, result => {
|
||||||
_this.setData({
|
_this.setData({
|
||||||
categoryList: result.data.categoryList
|
categoryList: result.data.categoryList
|
||||||
});
|
});
|
||||||
@ -47,7 +47,7 @@ Page({
|
|||||||
/**
|
/**
|
||||||
* Api:切换导航栏
|
* Api:切换导航栏
|
||||||
*/
|
*/
|
||||||
onSwitchTab: function(e) {
|
onSwitchTab(e) {
|
||||||
let _this = this;
|
let _this = this;
|
||||||
// 第一步:切换当前的分类id
|
// 第一步:切换当前的分类id
|
||||||
_this.setData({
|
_this.setData({
|
||||||
@ -69,8 +69,7 @@ Page({
|
|||||||
App._get('sharing.goods/lists', {
|
App._get('sharing.goods/lists', {
|
||||||
page: page || 1,
|
page: page || 1,
|
||||||
category_id: _this.data.category_id
|
category_id: _this.data.category_id
|
||||||
}, function(result) {
|
}, result => {
|
||||||
console.log(result)
|
|
||||||
let resList = result.data.list,
|
let resList = result.data.list,
|
||||||
dataList = _this.data.goodsList;
|
dataList = _this.data.goodsList;
|
||||||
if (isPage == true) {
|
if (isPage == true) {
|
||||||
@ -96,20 +95,10 @@ Page({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* 分享当前页面
|
|
||||||
*/
|
|
||||||
onShareAppMessage: function() {
|
|
||||||
return {
|
|
||||||
title: '拼团首页',
|
|
||||||
path: "/pages/sharing/index/index?" + App.getShareUrlParams()
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 下拉到底加载数据
|
* 下拉到底加载数据
|
||||||
*/
|
*/
|
||||||
bindDownLoad: function() {
|
bindDownLoad() {
|
||||||
// 已经是最后一页
|
// 已经是最后一页
|
||||||
if (this.data.page >= this.data.goodsList.last_page) {
|
if (this.data.page >= this.data.goodsList.last_page) {
|
||||||
this.setData({
|
this.setData({
|
||||||
@ -124,7 +113,7 @@ Page({
|
|||||||
/**
|
/**
|
||||||
* 设置商品列表高度
|
* 设置商品列表高度
|
||||||
*/
|
*/
|
||||||
setListHeight: function() {
|
setListHeight() {
|
||||||
let systemInfo = wx.getSystemInfoSync(),
|
let systemInfo = wx.getSystemInfoSync(),
|
||||||
rpx = systemInfo.windowWidth / 750, // 计算rpx
|
rpx = systemInfo.windowWidth / 750, // 计算rpx
|
||||||
tapHeight = Math.floor(rpx * 98), // tap高度
|
tapHeight = Math.floor(rpx * 98), // tap高度
|
||||||
@ -136,4 +125,27 @@ Page({
|
|||||||
scrollHeight
|
scrollHeight
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享当前页面
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
return {
|
||||||
|
title: '拼团首页',
|
||||||
|
path: "/pages/sharing/index/index?" + App.getShareUrlParams()
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
return {
|
||||||
|
title: '拼团首页',
|
||||||
|
path: "/pages/sharing/index/index?" + App.getShareUrlParams()
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
})
|
})
|
@ -502,12 +502,30 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户点击右上角分享
|
* 分享当前页面
|
||||||
*/
|
*/
|
||||||
onShareAppMessage() {
|
onShareAppMessage() {
|
||||||
let _this = this;
|
const _this = this;
|
||||||
// 构建页面参数
|
// 构建页面参数
|
||||||
let params = App.getShareUrlParams({
|
const params = App.getShareUrlParams({
|
||||||
|
active_time_id: _this.data.active_time_id,
|
||||||
|
sharp_goods_id: _this.data.sharp_goods_id,
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.goods.goods_name,
|
||||||
|
path: `/pages/sharp/goods/index?${params}`
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
active_time_id: _this.data.active_time_id,
|
active_time_id: _this.data.active_time_id,
|
||||||
sharp_goods_id: _this.data.sharp_goods_id,
|
sharp_goods_id: _this.data.sharp_goods_id,
|
||||||
});
|
});
|
||||||
|
@ -168,12 +168,27 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户点击右上角分享
|
* 分享当前页面
|
||||||
*/
|
*/
|
||||||
onShareAppMessage() {
|
onShareAppMessage() {
|
||||||
let _this = this;
|
const _this = this;
|
||||||
// 构建页面参数
|
// 构建页面参数
|
||||||
let params = App.getShareUrlParams();
|
const params = App.getShareUrlParams();
|
||||||
|
return {
|
||||||
|
title: '整点秒杀',
|
||||||
|
path: `/pages/sharp/index/index?${params}`
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams();
|
||||||
return {
|
return {
|
||||||
title: '整点秒杀',
|
title: '整点秒杀',
|
||||||
path: `/pages/sharp/index/index?${params}`
|
path: `/pages/sharp/index/index?${params}`
|
||||||
|
@ -34,21 +34,6 @@ Page({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* 分享当前页面
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
let _this = this;
|
|
||||||
// 构建页面参数
|
|
||||||
let params = App.getShareUrlParams({
|
|
||||||
'shop_id': _this.data.detail.shop_id
|
|
||||||
});
|
|
||||||
return {
|
|
||||||
title: _this.data.detail.article_title,
|
|
||||||
path: "/pages/shop/detail/index?" + params
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 拨打电话
|
* 拨打电话
|
||||||
*/
|
*/
|
||||||
@ -74,4 +59,36 @@ Page({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享当前页面
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
|
'shop_id': _this.data.detail.shop_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.detail.article_title,
|
||||||
|
path: "/pages/shop/detail/index?" + params
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享到朋友圈
|
||||||
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
||||||
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
||||||
|
*/
|
||||||
|
onShareTimeline() {
|
||||||
|
const _this = this;
|
||||||
|
// 构建页面参数
|
||||||
|
const params = App.getShareUrlParams({
|
||||||
|
'shop_id': _this.data.detail.shop_id
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
title: _this.data.detail.article_title,
|
||||||
|
path: "/pages/shop/detail/index?" + params
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
})
|
})
|
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"version": "1.1.43"
|
"version": "1.1.44"
|
||||||
}
|
}
|
||||||
|
@ -146,7 +146,8 @@
|
|||||||
|
|
||||||
.wxParse-video-video {
|
.wxParse-video-video {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
/* height: 100%; */
|
height: 100%;
|
||||||
|
min-height: 225px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wxParse-img {
|
.wxParse-img {
|
||||||
|
Reference in New Issue
Block a user