qualification.jsp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. * {
  10. margin: 0;
  11. padding: 0
  12. }
  13. a {
  14. list-style: none;
  15. text-decoration: none
  16. }
  17. i {
  18. font-style: normal
  19. }
  20. body {
  21. background-color: rgb(228, 228, 228);
  22. }
  23. h3 {
  24. line-height: 20px;
  25. padding: 20px 0 20px 15px;
  26. border-bottom: 1px solid #CCCCCC;
  27. font-weight: normal
  28. }
  29. .body-margin {
  30. margin: 0 26px;
  31. }
  32. .left-span {
  33. width: 3px;
  34. height: 20px;
  35. margin-right: 10px;
  36. background-color: #00A6C7;
  37. display: inline-block;
  38. vertical-align: bottom
  39. }
  40. .list-div label {
  41. display: inline-block;
  42. width: 70px;
  43. }
  44. .ship-shop {
  45. background-color: #fff;
  46. margin-top: 20px;
  47. min-height: 500px;
  48. }
  49. .table {
  50. width: 100%;
  51. border-collapse: collapse;
  52. }
  53. .table th {
  54. color: #000;
  55. font-weight: normal
  56. }
  57. .table th, .table td {
  58. height: 35px;
  59. border: 1px solid #CCCCCC;
  60. text-align: center;
  61. padding: 5px 0;
  62. }
  63. .select-all td {
  64. border: 0
  65. }
  66. .select-all label {
  67. display: inline-block;
  68. padding-left: 5px;
  69. vertical-align: 1px;
  70. }
  71. .select-ship span {
  72. cursor: pointer;
  73. display: inline-block;
  74. width: 100px;
  75. line-height: 35px;
  76. text-align: center;
  77. border-radius: 5px;
  78. background-color: #00A6C7;
  79. color: #fff;
  80. }
  81. .select-ship span:last-child {
  82. margin-left: 20px;
  83. }
  84. .status-span span {
  85. display: inline-block;
  86. background-color: #00A6C7;
  87. padding: 7px 20px;
  88. color: #fff;
  89. cursor: pointer
  90. }
  91. .status-span span:nth-child(1) {
  92. margin-right: 10px;
  93. }
  94. .status-span span:nth-child(2) {
  95. margin-left: 10px;
  96. }
  97. .select-ship {
  98. text-align: center;
  99. }
  100. .select-ship span {
  101. cursor: pointer;
  102. display: inline-block;
  103. width: 100px;
  104. line-height: 35px;
  105. text-align: center;
  106. border-radius: 5px;
  107. background-color: #00A6C7;
  108. color: #fff;
  109. }
  110. .select-ship span:last-child {
  111. margin-left: 20px;
  112. }
  113. </style>
  114. </head>
  115. <body>
  116. <div class="body-margin">
  117. <h3><span class="left-span"></span>订单列表--商品资质</h3>
  118. <div class="ship-shop">
  119. <form id="shipForm" method="post">
  120. <sys:message content="${message}"/>
  121. <table class="table">
  122. <tr>
  123. <th>供应商</th>
  124. <th>商品图片</th>
  125. <th>商品名称</th>
  126. <th>本次发货</th>
  127. <th>SN码</th>
  128. <th>资质文件</th>
  129. <th>操作</th>
  130. </tr>
  131. <c:forEach items="${logisticsRecords}" var="logistics" varStatus="index">
  132. <tr>
  133. <td>${logistics.shopName}</td>
  134. <td><img src="${logistics.image}" alt="" width="80px;height:auto;"></td>
  135. <td>${logistics.shopName}</td>
  136. <td>${logistics.num}</td>
  137. <td>${empty logistics.sn ? "无":logistics.sn}</td>
  138. <td>${logistics.isFile ? "已上传":"未上传"}</td>
  139. <td><a href="${ctx}/order/qualificationForm?recordId=${logistics.id}">上传资质</a></td>
  140. </tr>
  141. </c:forEach>
  142. </table><br><br><br><br>
  143. <div class="select-ship">
  144. <input class="btn btn-primary" type="button" value="确认" onclick="window.location.href='${ctx}/order/logisticsDetails?orderID=${orderId}'" style="margin-left: 15px"/>
  145. </div>
  146. </form>
  147. </div>
  148. </div>
  149. </body>
  150. </html>