瀏覽代碼

客诉添加订单中,选择产品时,去除配件信息;

xian 6 年之前
父節點
當前提交
00f8fe7750
共有 1 個文件被更改,包括 3 次插入7 次删除
  1. 3 7
      watero-rst-web/src/main/webapp/WEB-INF/views/cm/customer/order_list.ftl

+ 3 - 7
watero-rst-web/src/main/webapp/WEB-INF/views/cm/customer/order_list.ftl

@@ -216,7 +216,6 @@
                                 <tr class="text-c">
                                     <th style="text-align: center;" width="60">产品名称</th>
                                     <th style="text-align: center;" width="60">产品颜色</th>
-                                    <th style="text-align: center" width="60">产品配件</th>
                                 </tr>
                                 </thead>
                                 <tbody id="addProduct">
@@ -684,6 +683,7 @@
             }
 
             var produceFittingsHtml = '';
+            /*
             if(produceFittings != null && produceFittings.length > 0){
                 produceFittingsHtml += '<table style="height: 100%;">';
                 for(var m=0;m<produceFittings.length;m++){
@@ -704,19 +704,15 @@
                 produceFittingsHtml += '</table>';
             }else{
                 produceFittingsHtml += '<span>暂无产品配件!<span>';
-            }
+            }*/
 
             var produceHtml = '<input type="hidden" value="'+ product.productId +'">' +
                     '<span>'+  product.productName +'</span>';
 
             html += ' <tr >' +
                     '    <td width="80">'+ produceHtml +'</td>' +
-                    '    <td style="padding: 0px;text-align: center;">' +
-                    colorHtml +
+                    '    <td style="padding: 0px;text-align: center;">' + colorHtml +
                     '   </td>' +
-                    '    <td style="padding: 0px;text-align: center;">' +
-                    produceFittingsHtml +
-                    '    </td>' +
                     '</tr>';
         }