You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oa-base/utils/PageMixin.js

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`
}
},
// 其它生命周期方法也可以在此实现...
};