34 lines
613 B
JavaScript
34 lines
613 B
JavaScript
|
|
import { mapGetters } from 'vuex'
|
|
export default {
|
|
data() {
|
|
return {
|
|
h5NavHeightP: 44,
|
|
// showAppbar:true
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters(['showAppbar'])
|
|
},
|
|
onLoad({ appbar }) {
|
|
if (appbar == 'hidden') {
|
|
this.h5NavHeightP = 0
|
|
// this.showAppbar = false
|
|
this.hideNavBar()
|
|
}
|
|
},
|
|
methods: {
|
|
hideNavBar() {
|
|
/*#ifdef H5*/
|
|
this.$nextTick(() => {
|
|
let head = document.getElementsByTagName('uni-page-head')
|
|
if (head[0]) {
|
|
head[0].remove()
|
|
}
|
|
// console.log(head);
|
|
})
|
|
/*#endif*/
|
|
}
|
|
}
|
|
}
|