混淆调整

这个提交包含在:
徐勤民 2024-10-21 11:11:05 +08:00
父节点 011fcba55a
当前提交 6697a0a718
共有 4 个文件被更改,包括 7 次插入7 次删除

查看文件

@ -1,7 +1,7 @@
/** /**
* 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.3'; export const HAR_VERSION = '1.0.4';
export const BUILD_MODE_NAME = 'release'; export const BUILD_MODE_NAME = 'release';
export const DEBUG = false; export const DEBUG = false;
export const TARGET_NAME = 'default'; export const TARGET_NAME = 'default';

查看文件

@ -1,5 +1,5 @@
# [v1.0.4] 2024.xx.xx # [v1.0.4] 2024.10.21
------ ------
> - 优化缓存工具 > - 优化缓存工具

查看文件

@ -207,8 +207,8 @@ MyView
HttpHelper.get() HttpHelper.get()
.get<HttpResult<T>>(url.url.startsWith('http') ? url.url : GlobalValue.getInstance().envUrl + url.url, .get<HttpResult<T>>(url.url.startsWith('http') ? url.url : GlobalValue.getInstance().envUrl + url.url,
data ? JSON.stringify(data) : undefined, { data ? JSON.stringify(data) : undefined, {
userId: GlobalValue.getInstance().userId, userId: GlobalValue.getInstance().userIds,
clientId: GlobalValue.getInstance().getClientId(), clientId: GlobalValue.getInstance().getClientIds(),
version: ConstantValue.VERSION, version: ConstantValue.VERSION,
deviceType: '01', deviceType: '01',
timeStamp: timeStamp + '', timeStamp: timeStamp + '',
@ -237,8 +237,8 @@ HttpHelper.get()
HttpHelper.get() HttpHelper.get()
.post<HttpResult<T>>(url.url.startsWith('http') ? url.url : GlobalValue.getInstance().envUrl + url.url, .post<HttpResult<T>>(url.url.startsWith('http') ? url.url : GlobalValue.getInstance().envUrl + url.url,
data ? JSON.stringify(data) : undefined, { data ? JSON.stringify(data) : undefined, {
userId: GlobalValue.getInstance().userId, userId: GlobalValue.getInstance().userIds,
clientId: GlobalValue.getInstance().getClientId(), clientId: GlobalValue.getInstance().getClientIds(),
version: ConstantValue.VERSION, version: ConstantValue.VERSION,
deviceType: '01', deviceType: '01',
timeStamp: timeStamp + '', timeStamp: timeStamp + '',

查看文件

@ -1,6 +1,6 @@
{ {
"name": "@szyx/sdk_base", "name": "@szyx/sdk_base",
"version": "1.0.3", "version": "1.0.4",
"description": "数字医信公司,鸿蒙app开发基础工具。", "description": "数字医信公司,鸿蒙app开发基础工具。",
"main": "Index.ets", "main": "Index.ets",
"author": "szyx", "author": "szyx",