select_flow.jsp
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page language="java" contentType="text/html; charset=GB18030"
  2.     pageEncoding="GB18030"%>
  3. <%@include file="/common/common.jsp" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
  8. <link href="style/oa.css" rel="stylesheet" type="text/css">
  9. <script language="javascript" src="script/public.js"></script>
  10. <title>请选择要添加的公文</title>
  11. </head>
  12. <body>
  13. <center>
  14. <TABLE class="tableEdit" border="0" cellspacing="1" cellpadding="0" style="width:580px;">
  15. <TBODY>
  16. <TR>
  17. <!-- 这里是添加、编辑界面的标题 -->
  18. <td align="center" class="tdEditTitle">请选择要添加的公文</TD>
  19. </TR>
  20. <TR>
  21. <td>
  22. <!-- 主输入域开始 -->
  23. <c:forEach items="${workflows }" var="flow">
  24. <a href="document.do?method=addInput&workflowId=${flow.id }">${flow.name}</a> &nbsp;
  25. </c:forEach>
  26. <!-- 主输入域结束 -->
  27. </td>
  28. </TR>
  29. </TBODY>
  30. </TABLE>
  31. <TABLE>
  32. <TR align="center">
  33. <TD colspan="3" bgcolor="#EFF3F7">
  34. <input type="button" class="MyButton"
  35. value="关闭窗口" onclick="window.close()">
  36. </TD>
  37. </TR>
  38. </TABLE>
  39. </center>
  40. </body>
  41. </html>