您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

10 行
261 B

  1. <% if line_item == @current_item %>
  2. <tr id="current_item">
  3. <% else %>
  4. <tr>
  5. <% end %>
  6. <td><%= line_item.quantity %> &times;</td>
  7. <td><%= line_item.product.title %></td>
  8. <td class="item_price"><%= number_to_currency(line_item.total_price) %></td>
  9. </tr>