123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>江苏省港口建设与经营管理信息系统</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <%@ include file="../common.jsp"%>
- <script type="text/javascript" src="${app }/static/biz/js/todo.js"></script>
- <script type="text/javascript">
-
-
- $(document).ready(function () {
- //todo.init();
- var type = '${type}';
- $(".typeselectpicker").find("option[value='"+type+"']").attr("selected",true);
-
- iFrameHeightIframe('${menuid}');//自适应高度
- });
- </script>
- </head>
- <body>
- <div class="box" >
- <div class="box-content" >
- <form action="${app }/todo" id="todoform" method="post">
- <div >
- <table class="search_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%"></th>
- <th width="25%"></th>
- <th width="10%"></th>
- <th width="25%"></th>
- <th width="10%"></th>
- <th width="20%"></th>
- </tr>
- <tr>
- <tr>
- <td class="right">
- 待办类型 :
- </td>
- <td >
- <select id="type" name="type" class='typeselectpicker'>
- <option value="all">全部</option>
- <c:if test="${ssflag == 1 }">
- <option value="dcsb">单船申报</option>
- <option value="xkzsq">许可证申请</option>
- <option value="xkzbg">许可证变更</option>
- <option value="xkzyx">许可证延续</option>
- <option value="xkzzx">许可证注销</option>
- <option value="jdtx">监督提醒</option>
- <option value="jsjd">建设进度</option>
- <option value="qt">其他</option>
- </c:if>
- <c:if test="${ssflag == 0 }">
- <option value="lhsq">理货申请</option>
- <option value="lhbg">理货变更 </option>
- <option value="lhyx">理货延续</option>
- <option value="jsjdcbsj">港口工程初步设计申请</option>
- <option value="jsjdbg">港口工程初步设计变更</option>
- <option value="jgsq">港口工程竣工验收</option>
- <option value="jdtx">监督提醒</option>
- </c:if>
-
- </select>
-
- </td>
- <td class="right">
-
- </td>
- <td >
-
-
- </td>
- <td class="right" colspan="2">
- <a class="btn btn-default btn-sm" href="#" onclick="todo.search()">
- <i class="glyphicon glyphicon-search"></i>
- 查询</a>
-
- </td>
- </tr>
- </table>
- </div>
- <!-- 列表 -->
- <div style="background-color:#f4f4f4;">
- <table class="main_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="15%">任务类型</th>
- <!-- <th width="20%">任务内容</th> -->
- <th width="45%">任务标题</th>
- <th width="20%">开始时间</th>
- <th width="14%">发起人</th>
- <th width="6%">处理</th>
- </tr>
- <c:forEach items="${list}" var="workitem" varStatus="status">
- <tr class="tr_bg">
- <td>${workitem.processName }</td>
- <%-- <td>${workitem.description }</td> --%>
- <td>${workitem.description }</td>
- <td>${fn:substring(workitem.createTime,0,19)}</td>
- <td>${workitem.senderName }</td>
- <td>
- <c:if test="${workitem.status == 0 }">
- <a class="btn btn-default btn-xs" href="#" onclick="todo.banli('${workitem.processKey}','${workitem.businessKey }')" title="办理">
- <i class="glyphicon glyphicon-check"></i>
- </a>
- </c:if>
- <c:if test="${workitem.status == 1 }">
- <a class="btn btn-default btn-xs" href="#" onclick="todo.banliTh('${workitem.processKey}','${workitem.businessKey }')" title="办理">
- <i class="glyphicon glyphicon-check"></i>
- </a>
- </c:if>
- </td>
- </tr>
- </c:forEach>
- </table>
- </div>
- <!-- 分页 -->
- <%-- <jsp:include page="../pageinfo.jsp"></jsp:include> --%>
-
- </div>
- </form>
- </div>
-
-
-
- </body>
- </html>
|