- 新增 GXHomeView 组件,实现冠新首页功能 - 添加 GXAppPermissions组件,用于展示业务权限 - 在 AccountManager 中增加 refresh 方法,用于刷新用户信息 - 在 HttpHelper 中添加 clearHttp 和 cancel 方法,用于清理 HTTP 请求 - 更新 LoginView、RegisterView 和 VerificationView,集成冠新用户相关逻辑- 调整 HomeSwiperView,支持冠新首页轮播图显示
17 行
519 B
Plaintext
17 行
519 B
Plaintext
/**
|
|
* 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 = 'debug';
|
|
export const DEBUG = true;
|
|
export const TARGET_NAME = 'default';
|
|
|
|
/**
|
|
* BuildProfile Class is used only for compatibility purposes.
|
|
*/
|
|
export default class BuildProfile {
|
|
static readonly HAR_VERSION = HAR_VERSION;
|
|
static readonly BUILD_MODE_NAME = BUILD_MODE_NAME;
|
|
static readonly DEBUG = DEBUG;
|
|
static readonly TARGET_NAME = TARGET_NAME;
|
|
} |