countdown.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <!--css-->
  7. <link rel="stylesheet" href="css/ui/H-ui.admin.css">
  8. <link rel="stylesheet" href="css/ui/H-ui.min.css">
  9. <link rel="stylesheet" href="layer/2.4/skin/layer.css">
  10. <!--页面css-->
  11. <link rel="stylesheet" href="css/countdown.css">
  12. <!--js-->
  13. <script src="../js/jquery-2.2.3.min.js"></script>
  14. <script src="js/ui/H-ui.min.js"></script>
  15. <script src="layer/2.4/layer.js"></script>
  16. <!--页面js-->
  17. <script src="js/countdown.js"></script>
  18. </head>
  19. <body>
  20. <aside class="Hui-aside">
  21. <ul>
  22. <li href="index.html">订单信息</li>
  23. <li>
  24. <a href="product.html">所有产品</a>
  25. </li>
  26. <li href="attribute.html">
  27. <a>属性管理</a>
  28. </li>
  29. <li class="active">
  30. <a>倒计时即将产品</a>
  31. </li>
  32. </ul>
  33. </aside>
  34. <div class="page-container">
  35. <a class="btn btn-primary radius td-button" style="margin-bottom: 20px;" onclick="showAddWarp()">添加属性</a>
  36. <div id="loading"
  37. style="position: fixed;top: 50%;left: 50%;margin-left: -64px;margin-top: -64px;z-index:999999999999999999999">
  38. <img src='../images/loading.gif'/>
  39. </div>
  40. <table class="table table-border table-bordered table-bg">
  41. <thead>
  42. <tr>
  43. <th colspan="5" scope="col">商品属性</th>
  44. </tr>
  45. <tr class="text-c">
  46. <th>属性Id</th>
  47. <th>编号</th>
  48. <th>产品名称</th>
  49. <th>到期时间</th>
  50. <th>操作</th>
  51. </tr>
  52. </thead>
  53. <tbody id="warp" style="display: table-row-group;">
  54. </tbody>
  55. </table>
  56. </div>
  57. </body>
  58. </html>