#
whycq
2022-09-12 964c095a69cc70115b6c5c185c0682aeb68da5ab
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>项目进度表</title>
    <link rel="stylesheet" href="../static/css/style.css">
    <script src="../static/js/config.js"></script>
    <script src="../static/js/jquery-3.3.1.min.js"></script>
    <script src="../static/js/clock.js"></script>
<!--    <script src="../static/js/tableData.js"></script>-->
    <script src="../static/js/tableData2.js"></script>
    <script src="../static/js/projectShow.js"></script>
    <script src="../static/js/cols.js"></script>
</head>
<body>
    <div id="root">
        <!-- 标题 -->
        <div id="top-tab">
            <h1>常规项目进度表</h1>
 
            <img src="../static/image/logo-bar.png" alt="logo">
            <div id="showTime">
                
            </div>
        </div>
        <div class="table-room" >
            <table id="proType" cellspacing="0" cellpadding="0">
                <thead id="type-header"></thead>
            </table>
            <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>
 
    </div>
    <div id="details">
        <div class="head">
            <h2></h2>
            <button id="close" type="button" style="float: right;">关 闭</button>
        </div>
        <table id="details-tab-left" cellspacing="0" cellpadding="0"></table>
        <table id="details-tab" cellspacing="0" cellpadding="0">
            <thead>
            </thead>
            <tbody>
            </tbody>
        </table>
    </div>
    <div id="tips">
        <h3>提示</h3>
        <div id="text">当前项目计划时间不完整;请补充完成后重试!</div>
        <button id="closee" onclick="">确 认</button>
    </div>
</body>
</html>
<script type="text/javascript">
    $("#close").on("click",function(){
        $("#details").attr("style","display:none")
    })
    $("#closee").on("click",function(){
        $("#tips").attr("style","display:none")
    })
</script>