diff --git a/App.uvue b/App.uvue index f8b99b10f5a208ec8315303c9f943db05d2a2878..d7ffbd2caed3a8e35e046cb755be7df442e42c0b 100644 --- a/App.uvue +++ b/App.uvue @@ -49,15 +49,15 @@ // 统计上报 - 应用启动 // #ifdef APP-ANDROID || APP-IOS || WEB - 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); + // } + // }) // #endif // #ifdef APP if (process.env.NODE_ENV !== 'development') { //真机运行可以注释此条件 @@ -90,14 +90,14 @@ // #ifdef APP-ANDROID || APP-IOS || WEB // 统计上报 - 应用显示 - 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); + // } + // }) // #endif }, onHide: function () { @@ -107,14 +107,14 @@ // #ifdef APP-ANDROID || APP-IOS || WEB // 统计上报 - 应用进入后台 - 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); + // } + // }) // #endif }, // #ifdef APP-ANDROID @@ -139,20 +139,20 @@ onExit() { console.log('App Exit') }, - onError(err : any) { - // #ifdef APP-ANDROID || APP-IOS || WEB - // 统计上报 - 应用发生错误 - uni.report({ - name: 'uni-app-error', - options: err, - success(res) { - console.log(res); - }, fail(err) { - console.log(err); - } - }) - // #endif - }, + // onError(err : any) { + // // #ifdef APP-ANDROID || APP-IOS || WEB + // // 统计上报 - 应用发生错误 + // uni.report({ + // name: 'uni-app-error', + // options: err, + // success(res) { + // console.log(res); + // }, fail(err) { + // console.log(err); + // } + // }) + // // #endif + // }, // #endif methods: { increasetLifeCycleNum() { diff --git a/main.uts b/main.uts index dcf10628cd2a2cb8ed3c2ceecbb70cbddc669f0a..7b6dc58a5adecf0ca11c9cdf95602adc5a3aaf9a 100644 --- a/main.uts +++ b/main.uts @@ -1,27 +1,27 @@ // 仅测试 console.log 时机问题 import './test-main-console.uts' // #ifdef APP-ANDROID || APP-IOS || WEB -import { uniStat } from '@/uni_modules/uni-stat/plugin.uts' +// import { uniStat } from '@/uni_modules/uni-stat/plugin.uts' // #endif 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) - // #ifdef APP-ANDROID || APP-IOS || WEB - app.use(uniStat, statOptions) - // #endif + // // #ifdef APP-ANDROID || APP-IOS || WEB + // app.use(uniStat, statOptions) + // // #endif // app.mixin({ // onReady() { // setTimeout(() => {