开启微信小程序统计,配置白名单,发布体验版小程序
9***@qq.com
- 发布:2020-09-29 08:50
- 更新:2020-10-20 09:57
- 阅读:688
9***@qq.com (作者)
预览跟发行都不行,以下是main.js里面有自定义统计相关代码,我打日志发现有调用到,但是统计后台没有相关小程序的数据
//自定义统计,options = {page:''}
Vue.prototype.uniReport = function(eventName, options) {
// 上报数据
if (uni.report && eventName) {
// #ifdef MP-WEIXIN
eventName =
${eventName}-wx
;// #endif
options.systemType = this.tslmConfig.systemType;
options.tenantId = this.tslmConfig.tenantId;
options.apiSetting = this.tslmConfig.apiSetting;
options.version = this.tslmConfig.version;
options.baseVersion = this.tslmConfig.baseVersion;
uni.report(eventName, options);
}
}
2020-09-30 08:49