123456789101112131415161718192021222324252627282930 |
- <%@ page contentType="text/html;charset=UTF-8" isELIgnored="false"%>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title></title>
- <meta name="decorator" content="ani"/>
- </head>
- <body class="bg-white">
- <table class="ani table">
- <thead>
- <tr>
- <th>项目定义编号</th>
- <th>项目名称</th>
- <th>有无该数据</th>
- <%--<th>供应商名称</th>--%>
- </tr>
- </thead>
- <tbody>
- <c:forEach var="erp" items="${erpJudgeAccounts}">
- <tr>
- <td>${erp.itemId}</td>
- <td>${erp.itemName}</td>
- <td>${erp.flagItem}</td>
- <%--<td>${erp.itemSupplierName}</td>--%>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </body>
- </html>
|