Commit 55244f14 by 展昭

update

parent 4a8a1c3a
const setBarHeight = { const setBarHeight = {
mounted() { mounted() {
const barHeight = localStorage.get('barHeight'); const barHeight = localStorage.getItem('barHeight');
const conHeight = 46 + barHeight; const conHeight = 46 + barHeight;
document document
.getElementsByClassName("iosStyle")[0] .getElementsByClassName("iosStyle")[0]
......
...@@ -420,7 +420,7 @@ export default { ...@@ -420,7 +420,7 @@ export default {
} }
}, },
getBarHeight() { getBarHeight() {
const barHeight = localStorage.get('barHeight'); const barHeight = localStorage.getItem('barHeight');
const conHeight = 46 + barHeight; const conHeight = 46 + barHeight;
document document
.getElementsByClassName("iosStyle")[0] .getElementsByClassName("iosStyle")[0]
......
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