123456789101112131415161718192021222324252627282930313233343536 |
- // pages/index_01/index_01.js
- Page({
- /**
- * 页面的初始数据
- */
- data: {
-
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
-
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function (res) {
- if (res.from === 'button') {
- // 来自页面内转发按钮
- console.log(res.target)
- }
- return {
- title: app.data.shareMsg,
- path: '/pages/startPage/startPage',
- success: function (res) {
- // 转发成功
- },
- fail: function (res) {
- // 转发失败
- }
- }
- }
- })
|