17 lines
561 B
JavaScript
17 lines
561 B
JavaScript
|
// PageMixin.js
|
||
|
export default {
|
||
|
mounted() {
|
||
|
const targetElement = document.querySelector('.uni-app--maxwidth');
|
||
|
if (targetElement) {
|
||
|
targetElement.style.paddingTop = `${this.$store.state.systemInfo.statusBarHeight}px`
|
||
|
}
|
||
|
},
|
||
|
onShow() {
|
||
|
const targetElement = document.querySelector('.uni-app--maxwidth');
|
||
|
if (targetElement) {
|
||
|
targetElement.style.paddingTop = `${this.$store.state.systemInfo.statusBarHeight}px`
|
||
|
}
|
||
|
},
|
||
|
// 其它生命周期方法也可以在此实现...
|
||
|
};
|