头部通话提示

This commit is contained in:
小李 2026-03-19 15:18:12 +08:00
parent 288b62c8b1
commit 003d11355c
3 changed files with 8 additions and 1 deletions

View File

@ -1644,6 +1644,10 @@
} }
.call-list-huawei { .call-list-huawei {
.kj{
width: 18rpx !important;
height: 22rpx !important;
}
.item { .item {
padding: 24rpx 32rpx 0 32rpx !important; padding: 24rpx 32rpx 0 32rpx !important;
justify-content: space-between; justify-content: space-between;

View File

@ -147,6 +147,9 @@
} else { } else {
LeftTitle.value = '' LeftTitle.value = ''
} }
//
const systemInfo = uni.getSystemInfoSync();
data.statusBarHeight = systemInfo.statusBarHeight || 0;
if (props.isTipLayer) { if (props.isTipLayer) {
if (uni.getStorageSync("call_" + props.type) == props.type) { if (uni.getStorageSync("call_" + props.type) == props.type) {
showTipLayer.value = false showTipLayer.value = false

View File

@ -27,7 +27,7 @@ export function createApp() {
const systemInfo = uni.getStorageSync('systemInfo') || {} const systemInfo = uni.getStorageSync('systemInfo') || {}
app.config.globalProperties.$system = systemInfo.platform == 'ios' ? 'iOS' : 'Android' app.config.globalProperties.$system = systemInfo.platform == 'ios' ? 'iOS' : 'Android'
app.config.globalProperties.$systemInfo = systemInfo 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.config.globalProperties.$version = uni.getStorageSync('version')
app.use(globalMethods); app.use(globalMethods);