头部通话提示
This commit is contained in:
parent
288b62c8b1
commit
003d11355c
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
2
main.js
2
main.js
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue