浏览代码

首页添加第一次进入数据上报

guessPrice
sui 5 年前
父节点
当前提交
0399beab7d
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. +7
    -1
      496_dongfengqichen/pages/index/index.js

+ 7
- 1
496_dongfengqichen/pages/index/index.js 查看文件

@@ -39,7 +39,13 @@ Page({
placing:false,
buyState:false
},
onLoad: function () {
onLoad: function (options) {
if (app.globalData.isFirstLogin){
console.log("第一次进入");
wx.reportAnalytics('event_source_launch', {
source: options.source ? options.source :0
});
}
app.globalData.nowPage = 1;
if (app.globalData.isFirstLogin) {
this.getStartAdvertising();

正在加载...
取消
保存