12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
- <%@include file="/commons/include/html_doctype.html" %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <%@include file="/commons/include/get.jsp" %>
- <title>新建流程</title>
- <script type="text/javascript" src="${ctx}/js/hotent/platform/bpm/FlowUtil.js" ></script>
- <script type="text/javascript" src="${ctx}/js/hotent/platform/system/SysDialog.js"></script>
- <script type="text/javascript" src="${ctx}/js/hotent/platform/bpm/SelectUtil.js" ></script>
- <style type="text/css">
- html,body {
- padding: 0px;
- margin: 0;
- width: 100%;
- height: 100%;
- }
- </style>
- </head>
- <body>
- <div class="panel">
- <div class="hide-panel">
- <div class="panel-top">
- <div class="panel-toolbar">
- <div class="toolBar">
- <span style="font-size: 20px;color: #3194f1;font-weight: bold;"><img src="${ctx}/styles/blue/images/yanjing.png" style="float:left;margin:2px 10px 0 15px"/>公文管理</span>
- </div>
- </div>
- </div>
- </div>
- <div class="panel-body">
- <br />
- <br />
- <div style="font-size: 18px;"><i class="fa fa-1x fa-group"></i><img src="${ctx}/styles/blue/images/right.png" style="float:left;margin:0px 10px 0 15px"/>我的收文<span class="text-danger" style="color: #3194f1;">(${count})</span></div>
- <br />
- <div style="margin-top: 10px;background-color: #f3f3f3;width: 100%;height: auto;display: inline-block;">
- <c:forEach items="${bpmDefinitionList}" var="bpmDefinitionList">
- <ul style="float: left;margin-left:50px;padding-top: 10px;margin-bottom: 10px;width: 40%;">
- <li style="font-size: 18px">
- <span style="color: #0a50ba">●</span><%-- <span style="width:23%;display:inline-block;">【${bpmDefinitionList.typeName}】</span> --%>
- <a href="javaScript:void(0)" onclick="FlowUtil.startFlow(${bpmDefinitionList.defId},'${bpmDefinitionList.actDefId}')" title="${bpmDefinitionList.subject}" style="color: #333" >${f:subString(bpmDefinitionList.subject)}</a>
- </li>
- </ul>
- </c:forEach>
- </div>
- </div><!-- end of panel-body -->
- </div> <!-- end of panel -->
- </body>
- </html>
|