Explorar el Código

fix(env): 修复多域名环境配置和用户ID处理逻辑

- 修正 GlobalValue 中环境类型判断逻辑,添加 _envUrl 长度检查
- 根据多域名配置状态动态设置用户ID数组值
- 在 EnvManager 中添加 isMulti 条件判断来控制环境重置逻辑
- 为 HomeView 添加刷新频率限制防止重复请求
- 将未读消息提醒请求移动到正确位置确保执行
- 更新构建配置将调试模式设置为开启状态
徐勤民 hace 2 semanas
padre
commit
c8b9f3ea16
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      BuildProfile.ets

+ 2 - 2
BuildProfile.ets

@@ -2,8 +2,8 @@
  * Use these variables when you tailor your ArkTS code. They must be of the const type.
  */
 export const HAR_VERSION = '1.0.11';
-export const BUILD_MODE_NAME = 'release';
-export const DEBUG = false;
+export const BUILD_MODE_NAME = 'debug';
+export const DEBUG = true;
 export const TARGET_NAME = 'default';
 
 /**