1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <!--css-->
- <link rel="stylesheet" href="css/ui/H-ui.admin.css">
- <link rel="stylesheet" href="css/ui/H-ui.min.css">
- <link rel="stylesheet" href="layer/2.4/skin/layer.css">
- <!--页面css-->
- <link rel="stylesheet" href="css/countdown.css">
- <!--js-->
- <script src="../js/jquery-2.2.3.min.js"></script>
- <script src="js/ui/H-ui.min.js"></script>
- <script src="layer/2.4/layer.js"></script>
- <!--页面js-->
- <script src="js/countdown.js"></script>
- </head>
- <body>
- <aside class="Hui-aside">
- <ul>
- <li href="index.html">订单信息</li>
- <li>
- <a href="product.html">所有产品</a>
- </li>
- <li href="attribute.html">
- <a>属性管理</a>
- </li>
- <li class="active">
- <a>倒计时即将产品</a>
- </li>
- </ul>
- </aside>
- <div class="page-container">
- <a class="btn btn-primary radius td-button" style="margin-bottom: 20px;" onclick="showAddWarp()">添加属性</a>
- <div id="loading"
- style="position: fixed;top: 50%;left: 50%;margin-left: -64px;margin-top: -64px;z-index:999999999999999999999">
- <img src='../images/loading.gif'/>
- </div>
- <table class="table table-border table-bordered table-bg">
- <thead>
- <tr>
- <th colspan="5" scope="col">商品属性</th>
- </tr>
- <tr class="text-c">
- <th>属性Id</th>
- <th>编号</th>
- <th>产品名称</th>
- <th>到期时间</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody id="warp" style="display: table-row-group;">
- </tbody>
- </table>
- </div>
- </body>
- </html>
|