From 3706c66fbf85a5697020cbef91404f0561d13d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=8B=A4=E6=B0=91?= Date: Mon, 11 Nov 2024 17:52:57 +0800 Subject: [PATCH] =?UTF-8?q?feat(account):=20=E5=86=A0=E6=96=B0=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E7=B1=BB=E5=9E=8B=E9=80=BB=E8=BE=91=E9=87=8D=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改 AccountData 类,增加 GXTokenData 和 GXTokeModel 接口 - 更新 AccountManager 类,添加冠新用户信息获取方法 - 调整 GlobalValue 中的 appType 和 gxToken 字段 - 更新相关 API 配置 - 修改页面组件,支持冠新用户类型和厂商选择 --- src/main/ets/view/SafeView.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/ets/view/SafeView.ets b/src/main/ets/view/SafeView.ets index e30b727..519f0d3 100644 --- a/src/main/ets/view/SafeView.ets +++ b/src/main/ets/view/SafeView.ets @@ -57,7 +57,7 @@ export struct SafeView { this.customBuilderParam() } .padding({ - top: this.isImmersive ? 0 : WindowHelper.topRectHeight + 44, + top: this.isImmersive ? 0 : this.hideNavBar ? 44 : WindowHelper.topRectHeight + 44, bottom: this.isImmersive ? 0 : WindowHelper.bottomRectHeight }) .align(Alignment.Top)