SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>云配送-投诉处理</title>
</head>
<body>
    <div class="header">
        <div>投诉处理</div>
        <div class="nav">
          <span>
        发送时间
        </span>
           
          <input type="date">
        <span></span>   
        <input type="date">


        <button class="button" type="button">
        发送门店
        </button>

        <select name="">
           <option value="0">UI组</option>
           <option value="1">一组</option>
           <option value="2">二组</option>
        </select>

         <button class="button" type="button">
        查询
        </button>

         <button class="button" type="button">
        添加
        </button>

         <button class="button" type="button">
        修改
        </button>

         <button class="button" type="button">
        导出Excel
        </button>

        <button class="button" type="button">
        高级查询
        </button>

        </div>

    </div>

    <div class="context">
        <div>
            <table>
                <thead>
                    <tr>
                        <th></th>
                        <th>信息内容</th>
                        <th>发送时间</th>
                        <th>发送门店</th>
                        <th>发送电话</th>
                        <th>发送人姓名</th>
                        <th>信息类型</th>
                        <th>备注</th>
                        
                    </tr>

                    <tr>
                        <th><input type="checkbox"></th>
                        <th>我们即将进行一次重大的历史改革,将前沿知识进行普及扩散。</th>
                        <th>2020/12/22</th>
                        <th>二张</th>
                        <th>19145685234</th>
                        <th>张昭</th>
                        <th>通知</th>
                        <th>根据新政策通知需进行多方位普及,将多次进行数据迁移</th>
                      
                       
                    </tr>

                </thead>

            </table>

        </div>


    </div>

    <div class="send">
        <span>
            发送详细内容:

        </span>
        

    </div>



   <div class="footer">
       <ul class="page">
            <li><a href="#">上一页</a></li>
            <li><a href="#">1</a></li>
            <li><a class="active" href="#">2</a></li>
            <li><a href="#">3</a></li>
            <li><a href="#">4</a></li>
            <li><a href="#">5</a></li>
            <li><a href="#">6</a></li>
            <li><a href="#">7</a></li>
            <li><a href="#">下一页</a></li>

       </ul>
    </div>


</body>
</html>
/* 分页样式 */

ul.page {
    display: inline-block;
    padding: 0;
    margin: 0;
}

ul.page li {
    display: inline;
    }

ul.page li a {
    color: black;
    float: left;
    padding: 8px 15px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
}

ul.page li a.active {
    background-color: darkcyan;
    color: white;
    border: 1px solid darkcyan;
}

ul.page li a:hover:not(.active) {
    background-color: #ddd;
}