From 6feb2b39b958803cafe3602d3dadf30a4bee80ab Mon Sep 17 00:00:00 2001 From: zpc Date: Fri, 20 Jun 2025 16:18:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=85=BC=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/platform/PlatformFactory.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/platform/PlatformFactory.js b/common/platform/PlatformFactory.js index 6861561..a664edf 100644 --- a/common/platform/PlatformFactory.js +++ b/common/platform/PlatformFactory.js @@ -1,7 +1,7 @@ import BasePlatform from './BasePlatform.js'; - -//#ifdef APP import AppPlatform from './AppPlatform'; +//#ifdef APP +// import AppPlatform from './AppPlatform'; //#endif class PlatformFactory { @@ -12,7 +12,7 @@ class PlatformFactory { return new AppPlatform(); //#endif // 默认返回 - return new BasePlatform(); + return new AppPlatform(); } }