erpCreditTips.jsp 652 B

123456789101112131415161718192021222324252627282930
  1. <%@ page contentType="text/html;charset=UTF-8" isELIgnored="false"%>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title></title>
  6. <meta name="decorator" content="ani"/>
  7. </head>
  8. <body class="bg-white">
  9. <table class="ani table">
  10. <thead>
  11. <tr>
  12. <th>项目定义编号</th>
  13. <th>项目名称</th>
  14. <th>有无该数据</th>
  15. <%--<th>供应商名称</th>--%>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. <c:forEach var="erp" items="${erpJudgeAccounts}">
  20. <tr>
  21. <td>${erp.itemId}</td>
  22. <td>${erp.itemName}</td>
  23. <td>${erp.flagItem}</td>
  24. <%--<td>${erp.itemSupplierName}</td>--%>
  25. </tr>
  26. </c:forEach>
  27. </tbody>
  28. </table>
  29. </body>
  30. </html>