| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "plm");%>
- <%pageContext.setAttribute("currentMenu", "plm");%>
- <!doctype html>
- <html lang="en">
- <head>
- <%@include file="/common/meta.jsp"%>
- <title>列表</title>
- <%@include file="/common/s3.jsp"%>
- <script type="text/javascript">
- var config = {
- id: 'pimInfoGrid',
- pageNo: ${page.pageNo},
- pageSize: ${page.pageSize},
- totalCount: ${page.totalCount},
- resultSize: ${page.resultSize},
- pageCount: ${page.pageCount},
- orderBy: '${page.orderBy == null ? "" : page.orderBy}',
- asc: ${page.asc},
- params: {
- 'filter_LIKES_name': '${param.filter_LIKES_name}'
- },
- selectedItemClass: 'selectedItem',
- gridFormId: 'pimInfoGridForm',
- exportUrl: 'pim-info-export.do'
- };
- var table;
- $(function() {
- table = new Table(config);
- table.configPagination('.m-pagination');
- table.configPageInfo('.m-page-info');
- table.configPageSize('.m-page-size');
- });
- </script>
- </head>
- <body>
- <%@include file="/header/plm.jsp"%>
- <div class="row-fluid">
- <!-- start of sidebar -->
- <div class="panel-group col-md-2" id="accordion" role="tablist" aria-multiselectable="true" style=" ">
- <div class="panel panel-default">
- <div class="panel-heading" role="tab" id="collapse-header-user" data-toggle="collapse" data-parent="#accordion" href="#collapse-body-auth" aria-expanded="true" aria-controls="collapse-body-auth">
- <h4 class="panel-title">
- <i class="glyphicon glyphicon-list"></i>
-
- </h4>
- </div>
- <div id="collapse-body-auth" class="panel-collapse collapse ${currentMenu == 'plm' ? 'in' : ''}" role="tabpanel" aria-labelledby="collapse-header-auth">
- <div class="panel-body">
- <ul class="nav nav-list">
- <li><a href="${tenantPrefix}/plm/index.do"><i class="glyphicon glyphicon-list"></i> 返回首页</a></li>
- </ul>
- </div>
- </div>
- </div>
- <footer id="m-footer" class="text-center">
- <hr>
- © 江西军民融合
- </footer>
- </div>
- <!-- start of main -->
- <section id="m-main" class="col-md-10" style=" ">
- <form id="plmGridForm" name="plmGridForm" method='post' action="plm-project-remove.do" class="m-form-blank">
- <div class="panel panel-default">
- <div class="panel-heading">
- <i class="glyphicon glyphicon-list"></i>
- 任务
- <div class="pull-right ctrl">
- <a class="btn btn-default btn-xs"><i id="audit-baseSearchIcon" class="glyphicon glyphicon-chevron-up"></i></a>
- </div>
- </div>
- <table id="plmGrid" class="table table-hover">
- <thead>
- <tr>
- <th class="sorting" name="id"><spring:message code="plm.plm.list.id" text="编号"/></th>
- <th>类型</th>
- <th>名称</th>
- <th>创建时间</th>
- <th>报告人</th>
- <th>负责人</th>
- <th>状态</th>
- </tr>
- </thead>
- <tbody>
- <c:forEach var="item" items="${page.result}">
- <tr>
- <td>${item.id}</td>
- <td>${item.type}</td>
- <td><a href="issue.do?id=${item.id}">${item.name}</a></td>
- <td><fmt:formatDate value="${item.createTime}" type="both"/></td>
- <td><tags:user userId="${item.reporterId}"/></td>
- <td><tags:user userId="${item.assigneeId}"/></td>
- <td>${item.status}</td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- </form>
- <div class="m-spacer"></div>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|