Commit d3354a5a by 李嘉林

埋点

parent 70d1dce9
......@@ -29,7 +29,7 @@ module.exports = merge(prodEnv, {//zjgyl
AREA_JSON: '"https://mayi-newshop.oss-cn-shanghai.aliyuncs.com/static/js/app.area.json"',
WLY_PROD_MARKETING: '"https://uat-zanmall-m.cipmp.com"',
MANALYTICS_HOST: '"https://analytics.mayi888.cn/ma.gif"',
CLK_LOG_URL: '"https://clklog.mayi888.cn/clklog_receiver/api/gp"'
CLK_LOG_URL: '"https://clklog.mayi888.cn/clklog_receiver/api/gp?project=clklogapp"'
// IMG_DOMAIN: '"http://cdn.mayi888.com"',
})
......@@ -51,11 +51,11 @@ Vue.prototype.$mpAnalytics = mpAnalytics;
// 神策埋点
let sensors = require('../node_modules/sa-sdk-miniprogram/sensorsdata.min.js');
sensors.init({
name: 'mayi-minip',
sensors.setPara({
name: 'sensors',
server_url: process.env.CLK_LOG_URL,
// 全埋点控制开关
autoTrack:{
autoTrack: {
appLaunch: true, // 默认为 true,false 则关闭 $MPLaunch 事件采集
appShow: true, // 默认为 true,false 则关闭 $MPShow 事件采集
appHide: true, // 默认为 true,false 则关闭 $MPHide 事件采集
......@@ -63,10 +63,12 @@ sensors.init({
pageShare: true, // 默认为 true,false 则关闭 $MPShare 事件采集
mpClick: true, // 默认为 false,true 则开启 $MPClick 事件采集
mpFavorite: true, // 默认为 true,false 则关闭 $MPAddFavorites 事件采集
pageLeave: true // 默认为 false, true 则开启 $MPPageLeave事件采集
pageLeave: true, // 默认为 false, true 则开启 $MPPageLeave事件采集
},
show_log: true
});
sensors.init();
Vue.prototype.$sensors = sensors;
const app = new Vue(App)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment