eea35a7a by simon

no message

1 parent 91d68f79
......@@ -13,17 +13,16 @@ Page({
})
},
onLoad(options) {
// this.initData();
},
initData() {
// app.queryIndex({
// auth: false
// app.post({
// url: app.api.member,
// data: {}
// }).then((result) => {
// this.setData({
// indexInfo: app.globalData.indexInfo
// })
// console.log("result:",result);
// resolve();
// })
},
initData() {
},
// 开始互动游戏 判断是否会员
onStartHandler() {
app.queryIndex({
......
......@@ -2,7 +2,7 @@ import Poster from '../../miniprogram_dist/poster/poster';
let app = getApp();
Page({
data: {
isOverShare: true,
// isOverShare: false,
imageUrl: "", // 海报图片
wxShareTitle: "", // 分享标题
wxCodePath: "", // 微信二维码参数地址,分享链接公用
......@@ -10,21 +10,21 @@ Page({
wishList: [],
},
onShareAppMessage() {
if (res.from === 'button') {
// 来自页面内转发按钮
console.log(res.target)
}
let title = this.data.wxShareTitle;
let path = this.data.wxCodePath;
let imageUrl = this.data.imageUrl;
console.log("title:", title);
console.log("path:", path);
console.log("imageUrl:", imageUrl);
return {
title,
path,
imageUrl
}
// if (res.from === 'button') {
// // 来自页面内转发按钮
// console.log(res.target)
// }
// let title = this.data.wxShareTitle;
// let path = this.data.wxCodePath;
// let imageUrl = this.data.imageUrl;
// console.log("title:", title);
// console.log("path:", path);
// console.log("imageUrl:", imageUrl);
// return {
// title,
// path,
// imageUrl
// }
},
onLoad(options) {
......