| | |
| | | <template> |
| | | <el-container class="home-container"> |
| | | <!-- 主页头部 --> |
| | | <el-header> |
| | | <div> |
| | | <img src="../assets/xiaohui4.png" alt="" /> |
| | | </div> |
| | | <div class="bg"></div> |
| | | </el-header> |
| | | <!-- 主页导航栏 --> |
| | | <el-row> |
| | | <el-menu |
| | | mode="horizontal" |
| | | background-color="rgb(64, 112, 186)" |
| | | text-color="white" |
| | | class="menu" |
| | | active-text-color="#000000" |
| | | :default-active="activeIndex" |
| | | @select="handleSelect" |
| | | > |
| | |
| | | </el-menu> |
| | | </el-row> |
| | | <el-container> |
| | | <el-main> |
| | | <!-- 更变的内容区域 --> |
| | | <el-main class="main"> |
| | | <router-view></router-view> |
| | | </el-main> |
| | | </el-container> |
| | | <el-footer>Footer</el-footer> |
| | | <el-footer>@平顶山学院科学技术协会</el-footer> |
| | | </el-container> |
| | | </template> |
| | | |
| | |
| | | .el-footer { |
| | | background-color: rgb(85, 81, 82); |
| | | } |
| | | .main { |
| | | padding: 20px 5px; |
| | | } |
| | | .el-footer { |
| | | font-size: 15px; |
| | | color: white; |
| | | text-align: center; |
| | | line-height: 60px; |
| | | } |
| | | </style> |