addLogistics.jsp 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>订单列表</title>
  6. <meta name="decorator" content="default"/>
  7. <%--<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>--%>
  8. <style type="text/css">
  9. *{margin: 0;padding: 0}
  10. a{list-style: none;text-decoration: none}
  11. i{font-style: normal}
  12. body{background-color: rgb(255,255,255);}
  13. h3{line-height: 20px;padding:20px 0 20px 15px; border-bottom: 1px solid #CCCCCC;font-weight: normal}
  14. .body-margin{margin:0 26px;}
  15. .left-span{width: 3px;height: 20px;margin-right:10px;background-color: #00A6C7;display: inline-block;vertical-align: bottom}
  16. .bj{position: fixed;width: 100%;height: 100%;bottom: 0;top:0;left: 0;z-index: 99;}
  17. .table{width: 100%;border-collapse: collapse;}
  18. .table th{color: #000;font-weight: normal;background-color: #CCCCCC}
  19. .table th,.table td{width: 20%;height: 35px;border: 1px solid #CCCCCC;text-align: center;padding: 5px 0;}
  20. .table td img{width: 60px;height: 60px;vertical-align: middle}
  21. .add-log{cursor: pointer;width: 100px;line-height: 30px;background-color: #00A6C7;color:#fff;border-radius: 5px;margin: 0 auto;}
  22. .span-block{display: block;margin-bottom: 5px;font-size: 14px; }
  23. </style>
  24. <script type="text/javascript">
  25. window.onload = function () {
  26. }
  27. </script>
  28. </head>
  29. <body>
  30. <div class="bj" style="display: none"></div>
  31. <div class="body-margin">
  32. <h3><span class="left-span"></span>订单列表--添加物流</h3>
  33. <div class="shop-info">
  34. <h3>商品信息</h3>
  35. <table class="table">
  36. <tr>
  37. <th>商品信息</th>
  38. <th>购买数量</th>
  39. <th>发货数量</th>
  40. <th>状态</th>
  41. <th>操作</th>
  42. </tr>
  43. <tr>
  44. <td>
  45. <img src="123.jpg">
  46. <span>12121asd</span>
  47. </td>
  48. <td>50</td>
  49. <td>50</td>
  50. <td>50</td>
  51. <td>
  52. <span class="span-block add-log">添加物流</span>
  53. </td>
  54. </tr>
  55. <tr>
  56. <td>
  57. <img src="123.jpg">
  58. <span>12121asd</span>
  59. </td>
  60. <td>50</td>
  61. <td>50</td>
  62. <td>50</td>
  63. <td>
  64. <span class="span-block add-log">添加物流</span>
  65. <span class="span-block">查看物流</span>
  66. </td>
  67. </tr>
  68. </table>
  69. </div>
  70. </div>
  71. </body>
  72. </html>