1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
- <html>
- <head>
- <title>订单列表</title>
- <meta name="decorator" content="default"/>
- <%--<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>--%>
- <style type="text/css">
- *{margin: 0;padding: 0}
- a{list-style: none;text-decoration: none}
- i{font-style: normal}
- body{background-color: rgb(255,255,255);}
- h3{line-height: 20px;padding:20px 0 20px 15px; border-bottom: 1px solid #CCCCCC;font-weight: normal}
- .body-margin{margin:0 26px;}
- .left-span{width: 3px;height: 20px;margin-right:10px;background-color: #00A6C7;display: inline-block;vertical-align: bottom}
- .bj{position: fixed;width: 100%;height: 100%;bottom: 0;top:0;left: 0;z-index: 99;}
- .table{width: 100%;border-collapse: collapse;}
- .table th{color: #000;font-weight: normal;background-color: #CCCCCC}
- .table th,.table td{width: 20%;height: 35px;border: 1px solid #CCCCCC;text-align: center;padding: 5px 0;}
- .table td img{width: 60px;height: 60px;vertical-align: middle}
- .add-log{cursor: pointer;width: 100px;line-height: 30px;background-color: #00A6C7;color:#fff;border-radius: 5px;margin: 0 auto;}
- .span-block{display: block;margin-bottom: 5px;font-size: 14px; }
- </style>
- <script type="text/javascript">
- window.onload = function () {
- }
- </script>
- </head>
- <body>
- <div class="bj" style="display: none"></div>
- <div class="body-margin">
- <h3><span class="left-span"></span>订单列表--添加物流</h3>
- <div class="shop-info">
- <h3>商品信息</h3>
- <table class="table">
- <tr>
- <th>商品信息</th>
- <th>购买数量</th>
- <th>发货数量</th>
- <th>状态</th>
- <th>操作</th>
- </tr>
- <tr>
- <td>
- <img src="123.jpg">
- <span>12121asd</span>
- </td>
- <td>50</td>
- <td>50</td>
- <td>50</td>
- <td>
- <span class="span-block add-log">添加物流</span>
- </td>
- </tr>
- <tr>
- <td>
- <img src="123.jpg">
- <span>12121asd</span>
- </td>
- <td>50</td>
- <td>50</td>
- <td>50</td>
- <td>
- <span class="span-block add-log">添加物流</span>
- <span class="span-block">查看物流</span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|