Commit c9834752 by 展昭

tj

parent da81a7e3
Showing with 1 additions and 1 deletions
......@@ -2,6 +2,7 @@ const setBarHeight = {
mounted() {
const barHeight = localStorage.getItem('barHeight');
const conHeight = 46 + barHeight;
console.log('mixins barHeight=', barHeight);
document
.getElementsByClassName("iosStyle")[0]
.setAttribute("style", "padding-top:" + barHeight + "px !important");
......
......@@ -57,7 +57,6 @@ Vue.prototype.setPageNavState = function () {
if (response) {
response = JSON.parse(response);
const barHeight = response.statusBarHeight;
console.log('barHeight=', barHeight);
localStorage.setItem('barHeight', barHeight);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment