|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="container" ref="container" >
|
|
|
<!-- @touchmove.stop.prevent="moveStop" -->
|
|
|
- <div id="topnav" class="topnav flex-start" :style="{'background-color':`rgba(21, 17, 38,${topNavAlpha})`}" v-if="!cover.isFullScreen">
|
|
|
+ <div id="topnav" class="topnav flex-start" :style="{'background-color':`rgba(21, 17, 38,${topNavAlpha})`,'padding-top':`${statusBarHeight}px`}" v-if="!cover.isFullScreen">
|
|
|
<div class="nav-item" @click="back">
|
|
|
<img :src="`${assetsUrl}back.png`" mode="widthFix" class="nav-img"></img>
|
|
|
</div>
|
|
@@ -293,10 +293,13 @@
|
|
|
userInfo(){
|
|
|
return JSON.parse(localStorage.getItem('userInfo'))
|
|
|
},
|
|
|
+ statusBarHeight(){
|
|
|
+ return localStorage.getItem('statusBarHeight');
|
|
|
+ }
|
|
|
},
|
|
|
created(){
|
|
|
},
|
|
|
- mounted() {
|
|
|
+ activated() {
|
|
|
this.otherInfo=JSON.parse(localStorage.getItem('otherInfo'));
|
|
|
console.log(this.otherInfo)
|
|
|
this.cover=this.otherInfo.cover;
|