修复无界状态的显示墙靠下
This commit is contained in:
parent
1ce66817d4
commit
e9cbd79d3b
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<q-page class="row items-center justify-evenly">
|
<q-page class="row items-center justify-evenly" :style-fn="wujie_height">
|
||||||
<wall-page />
|
<wall-page />
|
||||||
<media-control-page />
|
<media-control-page />
|
||||||
</q-page>
|
</q-page>
|
||||||
|
@ -70,7 +70,11 @@ export default defineComponent({
|
||||||
new Initializer(options).initialize();
|
new Initializer(options).initialize();
|
||||||
});
|
});
|
||||||
|
|
||||||
return {};
|
return {
|
||||||
|
wujie_height(offset:any){
|
||||||
|
return { minHeight: offset ? `calc(100vh - ${offset}px)` : '100vh' }
|
||||||
|
}
|
||||||
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue