|
@@ -38,33 +38,41 @@
|
|
|
</head>
|
|
|
<body>
|
|
|
<ul class="nav nav-tabs">
|
|
|
- <li><a href="${ctx}/order/logisticsDetails?orderID=">发货记录</a></li>
|
|
|
- <li class="active"><a href="${ctx}/order/qualificationInfo?logisticsBatchId=${logisticsBatchId}">商品资质</a></li>
|
|
|
+ <li><a href="${ctx}/order/logisticsDetails?orderID=${orderId}">发货记录</a></li>
|
|
|
+ <li class="active"><a href="${ctx}/order/qualificationInfo?logisticsBatchId=${logisticsBatchId}&orderId=${orderId}">商品资质</a></li>
|
|
|
</ul><br/>
|
|
|
-<div style="margin-left: 75px">
|
|
|
- <font style="font-size: 20px;font-weight: bold">${shopName} ${uploadTime}</font>
|
|
|
- <br><br>
|
|
|
- <c:forEach items="${recordList}" var="record" varStatus="status">
|
|
|
- <label><font style="font-weight: bold">商品${status.index+1}:</font>${record.productName}</label><br><br>
|
|
|
- <label><font style="font-weight: bold">SN码:</font>${record.sn}</label><br><br>
|
|
|
- <label>
|
|
|
- <font style="font-weight: bold">资质文件:</font>
|
|
|
- <c:forEach items="${record.fileList}" var="file">
|
|
|
- <p style="margin-left: 55px">${file.fileName} <a href="${ctx}/oss/cmOssArchive/fileDownload?ossName=${file.ossName}&fileName=${file.fileName}">下载</a></p>
|
|
|
+<c:if test="${not empty recordList}">
|
|
|
+ <div style="margin-left: 75px">
|
|
|
+ <font style="font-size: 20px;font-weight: bold">${shopName} ${uploadTime}</font>
|
|
|
+ <br><br>
|
|
|
+ <c:forEach items="${recordList}" var="record" varStatus="status">
|
|
|
+ <label><font style="font-weight: bold">商品${status.index+1}:</font>${record.productName}</label><br><br>
|
|
|
+ <label><font style="font-weight: bold">SN码:</font>${record.sn}</label><br><br>
|
|
|
+ <label>
|
|
|
+ <font style="font-weight: bold">资质文件:</font>
|
|
|
+ <c:forEach items="${record.fileList}" var="file">
|
|
|
+ <p style="margin-left: 55px">${file.fileName} <a href="${ctx}/oss/cmOssArchive/fileDownload?ossName=${file.ossName}&fileName=${file.fileName}">下载</a></p>
|
|
|
+ </c:forEach>
|
|
|
+ </label><br><br>
|
|
|
+ <label><font style="font-weight: bold">图片:</font>
|
|
|
+ <c:forEach items="${record.imageList}" var="image">
|
|
|
+ <img src="${image}" width="100" height="100">
|
|
|
+ </c:forEach>
|
|
|
+ </label><br>
|
|
|
+ <hr style="border:1px dashed #000">
|
|
|
</c:forEach>
|
|
|
- </label><br><br>
|
|
|
- <label><font style="font-weight: bold">图片:</font>
|
|
|
- <c:forEach items="${record.imageList}" var="image">
|
|
|
- <img src="${image}" width="100" height="100">
|
|
|
- </c:forEach>
|
|
|
- </label><br>
|
|
|
- <hr style="border:1px dashed #000">
|
|
|
- </c:forEach>
|
|
|
- <br><br>
|
|
|
- <div class="select-ship">
|
|
|
- <input class="btn btn-primary" type="button" value="编辑" onclick="window.location.href='${ctx}/order/qualificationList?logisticsBatchId=${logisticsBatchId}'"/>
|
|
|
+ <br><br>
|
|
|
+ <div style="text-align: center">
|
|
|
+ <input class="btn btn-primary" type="button" value="编辑" onclick="window.location.href='${ctx}/order/qualificationList?logisticsBatchId=${logisticsBatchId}'"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</c:if>
|
|
|
+<c:if test="${empty recordList}">
|
|
|
+ <div style="text-align: center">
|
|
|
+ <font color="#00bfff">尚未添加资质信息</font><br><br>
|
|
|
+ <input class="btn btn-primary" type="button" value="去补充" onclick="window.location.href='${ctx}/order/qualificationList?logisticsBatchId=${logisticsBatchId}'"/>
|
|
|
</div>
|
|
|
-</div>
|
|
|
+</c:if>
|
|
|
</body>
|
|
|
</html>
|
|
|
|