From 003d11355cf86b08f5c9874eb388e73c0c6322d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=9D=8E?= <930530870@qq.com> Date: Thu, 19 Mar 2026 15:18:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=B4=E9=83=A8=E9=80=9A=E8=AF=9D=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/call-log/list/list.vue | 4 ++++ components/call-log/nav-bar/nav-bar.vue | 3 +++ main.js | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/components/call-log/list/list.vue b/components/call-log/list/list.vue index 589f891..9e3d60c 100644 --- a/components/call-log/list/list.vue +++ b/components/call-log/list/list.vue @@ -1644,6 +1644,10 @@ } .call-list-huawei { + .kj{ + width: 18rpx !important; + height: 22rpx !important; + } .item { padding: 24rpx 32rpx 0 32rpx !important; justify-content: space-between; diff --git a/components/call-log/nav-bar/nav-bar.vue b/components/call-log/nav-bar/nav-bar.vue index 9572089..4d0b6b5 100644 --- a/components/call-log/nav-bar/nav-bar.vue +++ b/components/call-log/nav-bar/nav-bar.vue @@ -147,6 +147,9 @@ } else { LeftTitle.value = '' } + // 同步获取系统信息 + const systemInfo = uni.getSystemInfoSync(); + data.statusBarHeight = systemInfo.statusBarHeight || 0; if (props.isTipLayer) { if (uni.getStorageSync("call_" + props.type) == props.type) { showTipLayer.value = false diff --git a/main.js b/main.js index b16d121..a76f210 100644 --- a/main.js +++ b/main.js @@ -27,7 +27,7 @@ export function createApp() { const systemInfo = uni.getStorageSync('systemInfo') || {} app.config.globalProperties.$system = systemInfo.platform == 'ios' ? 'iOS' : 'Android' app.config.globalProperties.$systemInfo = systemInfo - uni.setStorageSync('version', '1.0.3.sp4') + uni.setStorageSync('version', '1.0.3.sp6') app.config.globalProperties.$version = uni.getStorageSync('version') app.use(globalMethods);