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);