- 修改 ApiConfig 文件,添加分号 - 重命名 ConversationBean 中的属性,首字母大写 - 移除 HosConversationVIew 中的 onLoadMore 方法 - 新增 MessageHelper工具类,用于解析和处理消息 - 优化 HttpHelper 中的 response 处理逻辑 - 在 ToolsHelper 中添加 toString 方法,用于处理 ArrayBuffer (cherry picked from commit 73d8d98bbd6df6fef768a680c2af674a4b633013) # Conflicts: # app/src/main/ets/hospital/pages/reception/reception/HosConversationVIew.ets # app/src/main/ets/hospital/utils/MessageHelper.ets
17 行
522 B
Plaintext
17 行
522 B
Plaintext
/**
|
|
* Use these variables when you tailor your ArkTS code. They must be of the const type.
|
|
*/
|
|
export const HAR_VERSION = '1.0.7';
|
|
export const BUILD_MODE_NAME = 'release';
|
|
export const DEBUG = false;
|
|
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;
|
|
} |