mrzhssss
2022-01-14 7ea9e40063bb40954b1c73675e2ed1963df99c4d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>项目进度表</title>
    <link rel="stylesheet" href="../static/css/style.css">
 
    <script src="../static/js/jquery-3.3.1.min.js"></script>
    <script src="../static/js/common.js"></script>
<!--    <script src="../static/js/index.js" type="text/javascript" charset="utf-8"></script>-->
    <script src="../static/js/clock.js"></script>
    <script src="../static/js/tableData.js"></script>
<!--    <script src="../static/js/projectShow.js"></script>-->
</head>
<body>
    <div id="root">
        <!-- 标题 -->
        <div id="top-tab">
            <h1>2022年度集成项目表</h1>
            <div id="showTime"></div>
        </div>
        <table id="main-tab" cellspacing="0" cellpadding="0">
            <!-- 表头 -->
            <thead id="tab-header">
                
            </thead>
            <!-- 表身体 -->
            <tbody id="tab-body"> </tbody>
            <!-- 注意事项 -->
            <tr><th>注意事项</th></tr>
           
        </table>
    </div>
    <div id="details">
        <div class="head">
            <h2></h2>
            <button id="close" type="button" style="float: right;">关闭</button>
        </div>
        <table id="details-tab">
            <thead>
                <tr><th>任务名称</th><th>开始时间</th><th>结束时间</th></tr>
            </thead>
            <tbody>
                <tr><td>开始时间</td><td>2022-01-11</td><td></td></tr>
                <tr><td>结束时间</td><td>2022-02-05</td><td></td></tr>
                <tr><td>合约签订</td><td>2022-02-05</td><td></td></tr>
            </tbody>
        </table>
    </div>
</body>
</html>
<script type="text/javascript">
    // 明细关闭
    $("#close").on("click",function(){
        $("#details").attr("style","display:none")
    })
</script>