Browse Source

feat(account): 用户登录和登出时刷新应用列表

- 在用户登录和登出时,添加了刷新应用列表的操作
- 优化了应用列表的展示逻辑,使用唯一键确保每个应用的标识唯一
- 调整了过期订单提醒的存储键,增加了用户ID以区分不同用户
徐勤民 3 tuần trước cách đây
mục cha
commit
84a1bd6fc7
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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.5';
-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';
 
 /**