高度调整

This commit is contained in:
zhujiyan
2024-08-27 16:38:26 +08:00
parent 93fe619465
commit 2eb346e4c8
5 changed files with 12 additions and 11 deletions

View File

@@ -1,8 +1,9 @@
<template>
<div class="home">
<div class="homeView" style=" height: calc(100vh - 120px) !important;">
<model v-if="!authStore.showMenuFlag"></model>
<dashboard v-if="authStore.showMenuFlag"></dashboard>
</div>
<!-- <div class="main">
<div class="main_container">
<div class="mode" v-for="(item, index) in modeList" :key="index">
@@ -79,8 +80,8 @@ onMounted(() => {
});
</script>
<style lang="scss" scoped>
.home{
.homeView{
width: 100%;
height: 100%;
height: calc(100vh - 120px);
}
</style>