123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <%@ 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(228, 228, 228);
- }
- 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
- }
- .list-div label {
- display: inline-block;
- width: 70px;
- }
- .ship-shop {
- background-color: #fff;
- margin-top: 20px;
- min-height: 500px;
- }
- .table {
- width: 100%;
- border-collapse: collapse;
- }
- .table th {
- color: #000;
- font-weight: normal
- }
- .table th, .table td {
- height: 35px;
- border: 1px solid #CCCCCC;
- text-align: center;
- padding: 5px 0;
- }
- .select-all td {
- border: 0
- }
- .select-all label {
- display: inline-block;
- padding-left: 5px;
- vertical-align: 1px;
- }
- .select-ship span {
- cursor: pointer;
- display: inline-block;
- width: 100px;
- line-height: 35px;
- text-align: center;
- border-radius: 5px;
- background-color: #00A6C7;
- color: #fff;
- }
- .select-ship span:last-child {
- margin-left: 20px;
- }
- .status-span span {
- display: inline-block;
- background-color: #00A6C7;
- padding: 7px 20px;
- color: #fff;
- cursor: pointer
- }
- .status-span span:nth-child(1) {
- margin-right: 10px;
- }
- .status-span span:nth-child(2) {
- margin-left: 10px;
- }
- .select-ship {
- text-align: center;
- }
- .select-ship span {
- cursor: pointer;
- display: inline-block;
- width: 100px;
- line-height: 35px;
- text-align: center;
- border-radius: 5px;
- background-color: #00A6C7;
- color: #fff;
- }
- .select-ship span:last-child {
- margin-left: 20px;
- }
- </style>
- </head>
- <body>
- <div class="body-margin">
- <h3><span class="left-span"></span>订单列表--商品资质</h3>
- <div class="ship-shop">
- <form id="shipForm" method="post">
- <sys:message content="${message}"/>
- <table class="table">
- <tr>
- <th>供应商</th>
- <th>商品图片</th>
- <th>商品名称</th>
- <th>本次发货</th>
- <th>SN码</th>
- <th>资质文件</th>
- <th>操作</th>
- </tr>
- <c:forEach items="${logisticsRecords}" var="logistics" varStatus="index">
- <tr>
- <td>${logistics.shopName}</td>
- <td><img src="${logistics.image}" alt="" width="80px;height:auto;"></td>
- <td>${logistics.shopName}</td>
- <td>${logistics.num}</td>
- <td>${empty logistics.sn ? "无":logistics.sn}</td>
- <td>${logistics.isFile ? "已上传":"未上传"}</td>
- <td><a href="${ctx}/order/qualificationForm?recordId=${logistics.id}">上传资质</a></td>
- </tr>
- </c:forEach>
- </table><br><br><br><br>
- <div class="select-ship">
- <input class="btn btn-primary" type="button" value="确认" onclick="window.location.href='${ctx}/order/logisticsDetails?orderID=${orderId}'" style="margin-left: 15px"/>
- </div>
- </form>
- </div>
- </div>
- </body>
- </html>
|