mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-09 10:56:44 +08:00
74 lines
1.2 KiB
Vue
74 lines
1.2 KiB
Vue
<template>
|
|
<div class="main">
|
|
<!-- <div class="mianRouter"> -->
|
|
<router-view></router-view>
|
|
<!-- </div> -->
|
|
<!-- 底部 -->
|
|
<div class="grateful">
|
|
<img src="../../assets/images/grateful/gratefulFooter20250613.png" alt="" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Grateful",
|
|
data() {
|
|
return {
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.main {
|
|
background-color: #f2F5F7;
|
|
// height: 100%;
|
|
// display: flex;
|
|
// flex-direction: column;
|
|
|
|
// .mianRouter {
|
|
// flex: 1;
|
|
// }
|
|
}
|
|
|
|
.grateful {
|
|
width: 100%;
|
|
display: flex;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
height: 240px;
|
|
background: url('../../../public/images/courseBg.png') no-repeat;
|
|
background-size: 100% 100%;
|
|
|
|
.portal-header {
|
|
height: 72px;
|
|
display: flex;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid rgba(61, 61, 61, 0.15);
|
|
backdrop-filter: blur(10px);
|
|
|
|
.portal-top {
|
|
width: 100%;
|
|
margin: 0px 40px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
.portal-top-left {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
</style>
|