whycq
2022-03-09 f3d8cf47f66a52122b52932989e621fc18c2e404
# 表格
2个文件已添加
24 ■■■■■ 已修改文件
src/main/webapp/static/js/projectSchedule/projectSchedule.js 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/projectSchedule/projectSchedule.html 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/projectSchedule/projectSchedule.js
New file
@@ -0,0 +1,5 @@
// 数据源
var data = {
    id:1
}
// 表格渲染
src/main/webapp/views/projectSchedule/projectSchedule.html
New file
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>项目执行进度表</title>
    <script src="../../static/js/jquery-3.3.1.min.js"></script>
    <script src="../../static/js/projectSchedule/projectSchedule.js"></script>
</head>
<body>
    <div id='container'>
        <div class="table">
            <table border="1" cellspacing="" cellpadding="">
                <thead id="tab-header"></thead>
                <tbody id="tab-body"></tbody>
            </table>
        </div>
    </div>
</body>
</html>