diff --git a/App.uvue b/App.uvue index 53860b0e19eaad3a40c1a56ccd5cb989c406bdd9..3841b9a959637becda4817bcd48bf27dceb8c90f 100644 --- a/App.uvue +++ b/App.uvue @@ -48,15 +48,15 @@ // } as PerformanceObserverOptions) // 统计上报 - 应用启动 - uni.report({ - name: 'uni-app-launch', - options: res, - success(res_data) { - console.log(res_data); - }, fail(err) { - console.log(err); - } - }) + // uni.report({ + // name: 'uni-app-launch', + // options: res, + // success(res_data) { + // console.log(res_data); + // }, fail(err) { + // console.log(err); + // } + // }) // #ifdef APP if (process.env.NODE_ENV !== 'development') { //真机运行可以注释此条件 uni.getPrivacySetting({ @@ -87,14 +87,14 @@ console.log('App Show') // 统计上报 - 应用显示 - uni.report({ - name: 'uni-app-show', - success(res_data) { - console.log(res_data); - }, fail(err) { - console.log(err); - } - }) + // uni.report({ + // name: 'uni-app-show', + // success(res_data) { + // console.log(res_data); + // }, fail(err) { + // console.log(err); + // } + // }) }, onHide: function () { // 自动化测试 @@ -102,14 +102,14 @@ console.log('App Hide') // 统计上报 - 应用进入后台 - uni.report({ - name: 'uni-app-hide', - success(res) { - console.log(res); - }, fail(err) { - console.log(err); - } - }) + // uni.report({ + // name: 'uni-app-hide', + // success(res) { + // console.log(res); + // }, fail(err) { + // console.log(err); + // } + // }) }, // #ifdef APP-ANDROID onLastPageBackPress: function () { @@ -133,18 +133,18 @@ onExit() { console.log('App Exit') }, - onError(err : any) { - // 统计上报 - 应用发生错误 - uni.report({ - name: 'uni-app-error', - options: err, - success(res) { - console.log(res); - }, fail(err) { - console.log(err); - } - }) - }, + // onError(err : any) { + // // 统计上报 - 应用发生错误 + // uni.report({ + // name: 'uni-app-error', + // options: err, + // success(res) { + // console.log(res); + // }, fail(err) { + // console.log(err); + // } + // }) + // }, // #endif methods: { increasetLifeCycleNum() { diff --git a/main.uts b/main.uts index 53f9a8959b77b96d201a20a02cf4c8d0c119f718..2fba73c78d6fbadb848e69c6f0e1f749ae66c31b 100644 --- a/main.uts +++ b/main.uts @@ -1,23 +1,23 @@ // 仅测试 console.log 时机问题 import './test-main-console.uts' -import { uniStat } from '@/uni_modules/uni-stat/plugin.uts' +// import { uniStat } from '@/uni_modules/uni-stat/plugin.uts' import App from './App.uvue' import { createSSRApp } from 'vue' // 统计配置 -const collectItems = { - uniStatPageLog: true -} +// const collectItems = { +// uniStatPageLog: true +// } -const statOptions = { - debug: false, - collectItems: collectItems, -} +// const statOptions = { +// debug: false, +// collectItems: collectItems, +// } export function createApp() { const app = createSSRApp(App) - app.use(uniStat, statOptions) + // app.use(uniStat, statOptions) // app.mixin({ // onReady() { // setTimeout(() => {