javascript
// 设置页面最小高度
export const setPageMinHeight = () => {
return {
'position': 'relative',
'min-height': uni.getSystemInfoSync().windowHeight + 'px'
}
}
页面使用:
javascript
import {
setPageMinHeight
} from "@/utils/uniUtil";
data() {
return {
minHeight: setPageMinHeight(),