#
whycq
2022-09-09 b08464f75873d75725c685b5ad3ec206fb277b2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>项目执行进度表</title>
    <link rel="stylesheet" href="../../static/css/common.css">
    <link rel="stylesheet" href="../../static/css/projectSchedule.css">
    <script src="../../static/js/jquery-3.3.1.min.js"></script>
    <script src="../../static/js/common.js"></script>
    <script src="../../static/js/projectSchedule/testData.js"></script>
    <script src="../../static/js/projectSchedule/projectSchedule.js"></script>
</head>
<body>
    <div id='container'>
        <div class="table">
            <table  cellspacing="0" cellpadding="0">
                <thead id="tab-header"></thead>
                <tbody id="tab-body"></tbody>
            </table>
        </div>
    </div>
</body>
</html>