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

- 修正 GlobalValue 中环境类型判断逻辑,添加 _envUrl 长度检查
- 根据多域名配置状态动态设置用户ID数组值
- 在 EnvManager 中添加 isMulti 条件判断来控制环境重置逻辑
- 为 HomeView 添加刷新频率限制防止重复请求
- 将未读消息提醒请求移动到正确位置确保执行
- 更新构建配置将调试模式设置为开启状态
这个提交包含在:
徐勤民 2026-01-06 11:18:24 +08:00
父节点 c53e2555c3
当前提交 c8b9f3ea16

查看文件

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