<!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/projectShow2.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> 
 | 
        <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 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> 
 |