ソースを参照

订单详情添加商品颜色

wangxiaoming 7 年 前
コミット
a703bc4cd2

+ 2 - 0
tooth-wechat-web/src/main/webapp/WEB-INF/views/admin/order/order.jsp

@@ -120,6 +120,7 @@
 				  <thead>
 				  	<tr  class="f-14" style="font-weight: bold;">
 				  		<th>商品名称</th>
+						<th>商品颜色</th>
 				  		<th>商品图片</th>
 				  		<th>原价(¥)</th>
 				  		<th>优惠价(¥)</th>
@@ -132,6 +133,7 @@
 				  <c:forEach items="${orderItemList }" var="list">
 				  	<tr>
 				  		<td>${list.itemProductName }</td>
+						<td>${list.productColor }</td>
 				  		<td><img alt="图片" src="${list.itemProductPic}" style="width: 40px; height: 40px;"></td>
 				  		<td><fmt:formatNumber type="number" value="${list.itemProductPrice/100}" pattern="0.00" maxFractionDigits="2"/></td>
 				  		<td><fmt:formatNumber type="number" value="${list.itemProductDiscount/100}" pattern="0.00" maxFractionDigits="2"/></td>