From 19bf72e8487da5e6706e98ac1d670bba662ed3c2 Mon Sep 17 00:00:00 2001 From: minimaxagent1 Date: Wed, 30 Jul 2025 10:45:26 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9C=9F=E6=9C=BA=E8=B0=83=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .hbuilderx/launch.json | 16 ----- App.vue | 87 ++----------------------- manifest.json | 11 +++- project.config.json | 82 +++++++++++++++++++++++ utils/debug.js | 78 ++++++++++++++++++++++ utils/logManager.js | 143 +++++++++++++++++++++++++++++++++++++++++ utils/router.js | 14 ++-- 7 files changed, 328 insertions(+), 103 deletions(-) delete mode 100644 .hbuilderx/launch.json create mode 100644 project.config.json create mode 100644 utils/debug.js create mode 100644 utils/logManager.js diff --git a/.hbuilderx/launch.json b/.hbuilderx/launch.json deleted file mode 100644 index 81f13f4..0000000 --- a/.hbuilderx/launch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/ - // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数 - "version": "0.0", - "configurations": [{ - "default" : - { - "launchtype" : "local" - }, - "mp-weixin" : - { - "launchtype" : "local" - }, - "type" : "uniCloud" - } - ] -} diff --git a/App.vue b/App.vue index 3143ca6..bbb1764 100644 --- a/App.vue +++ b/App.vue @@ -1,93 +1,16 @@