feat: 添加论坛首页相关资源文件和基础功能

新增论坛首页所需的图片资源、CSS样式文件、Vue组件和基础功能实现。包括:
1. 添加多个图标图片资源
2. 创建index.css和sectionIndex.css样式文件
3. 实现论坛首页的Vue组件结构和基础交互
4. 添加论坛板块列表和帖子展示功能
5. 实现公共样式和布局组件
This commit is contained in:
A1300399510
2025-10-20 01:36:25 +08:00
parent ec9584d6ea
commit 8caf6c2b10
21 changed files with 19193 additions and 11 deletions

24
sectionIndex.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./css/sectionIndex.css" />
<script src="./js/vue.global.js"></script>
</head>
<body>
<div class="container" id="sectionIndex">
<div class="head">
<img class="logo" src="./img/logo.png" alt="" />
<div class="flex1"></div>
<div class="input-box">
<input type="text" placeholder="大家都在搜:屯特" />
<img class="icon" />
</div>
</div>
</div>
<script src="./js/sectionIndex.js"></script>
</body>
</html>