Files
cms/src/main/resources/templates/home/about.html

74 lines
4.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-4.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head th:include="dist/thymeleaf/common_head :: header('关于')">
</head>
<body>
<div th:insert="~{dist/thymeleaf/common_head :: #body_js}"></div>
<div id="app">
<el-container>
<el-container>
<el-header th:include="dist/thymeleaf/layout :: header"></el-header>
<el-main>
<el-col :md="4" :lg="4" :xl="4" class="hidden-sm-and-down">
<el-card th:include="dist/thymeleaf/layout :: userbox"></el-card>
</el-col>
<el-col :md="14" :lg="14" :xl="14" :sm="18" :xs="23" :offset="1">
<h2>作业提交系统</h2>
<br>
<ul>
<h3>功能说明</h3>
<li>自动识别未提交人员</li>
<li>提供作业格式模板下载</li>
<li>作业作者可以下载已提交的作业,作业保留一学期</li>
<li>实现作业提交,支持多文件上传,文件自动命名为学号+姓名,省去大量烦恼</li>
</ul>
<br>
<ul>
<h3>技术说明</h3>
<li>SpringBoot2.0 MVC后台开发框架使用SpringJpa持久层api底层为hibernate实现</li>
<li>vue2.5前端框架element2.1前端组件,前后端分离的开发方法</li>
<li>用户名密码使用最高安全性的SHA加密算法进行存储任何人无法获取</li>
<li>具备完整开发和维护文档,提供错误码、数据字典</li>
<li>URL为RESTful API风格便于开发和维护</li>
<li>异常统一管理</li>
<li><a href="https://blog.fjy8018.top/index.php/archives/100/">更多</a></li>
</ul>
<br>
<ul>
<h3>开发人员</h3>
<li><strong>界面布局设计 </strong>蓝钜</li>
<li><strong>代码开发 </strong>符嘉阳</li>
</ul>
<br>
<el-button type="text" @click="dialogTableVisible = true">查看更新日志</el-button>
<el-dialog title="GitLab更新日志"
:visible.sync="dialogTableVisible"
width="88%"
>
<el-table :data="VersionList" :default-sort="{prop: 'date', order: 'descending'}">
<el-table-column property="date" label="日期" sortable></el-table-column>
<el-table-column property="content" label="内容" sortable></el-table-column>
<el-table-column property="version" label="版本" sortable></el-table-column>
<el-table-column property="user" label="提交人员" sortable></el-table-column>
</el-table>
</el-dialog>
<ul>
<h3>友情链接</h3>
<li><a href="https://blog.fjy8018.top/">F嘉阳 博客</a></li>
<li><a href="http://orderbook.thresh.xin/">订书系统</a></li>
<li><a href="https://www.imis2.top/">班级网站</a></li>
<li><a href="http://home.fjy8018.top:8099/users/sign_in">班级代码托管网站(私人)</a></li>
</ul>
</el-col>
<el-col :md="5" :lg="5" :sm="5" :xl="5" class="hidden-xs-only"></el-col>
</el-main>
<el-footer th:include="dist/thymeleaf/layout :: footer"></el-footer>
</el-container>
</el-container>
</div>
<script th:src="@{/js/homepage.js}"></script>
</body>
</html>